├── README.md ├── api └── data.json ├── app_module.js ├── grid_directives.js ├── index.html ├── templates ├── as_table.html ├── editor.html └── editor_initializer.html └── vendor ├── angular.js └── jquery.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davemo/advanced-directives-with-angular-js/HEAD/README.md -------------------------------------------------------------------------------- /api/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davemo/advanced-directives-with-angular-js/HEAD/api/data.json -------------------------------------------------------------------------------- /app_module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davemo/advanced-directives-with-angular-js/HEAD/app_module.js -------------------------------------------------------------------------------- /grid_directives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davemo/advanced-directives-with-angular-js/HEAD/grid_directives.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davemo/advanced-directives-with-angular-js/HEAD/index.html -------------------------------------------------------------------------------- /templates/as_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davemo/advanced-directives-with-angular-js/HEAD/templates/as_table.html -------------------------------------------------------------------------------- /templates/editor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davemo/advanced-directives-with-angular-js/HEAD/templates/editor.html -------------------------------------------------------------------------------- /templates/editor_initializer.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davemo/advanced-directives-with-angular-js/HEAD/vendor/angular.js -------------------------------------------------------------------------------- /vendor/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davemo/advanced-directives-with-angular-js/HEAD/vendor/jquery.js --------------------------------------------------------------------------------