├── .gitignore ├── Gruntfile.coffee ├── README.md ├── angular-table-restful.css ├── angular-table-restful.js ├── angular-table-restful.min.js ├── angular-table-restful.min.map ├── bower.json ├── license.txt ├── package.json └── src ├── configuration.js ├── intro.js ├── module.js └── outro.js /.gitignore: -------------------------------------------------------------------------------- 1 | /bower_components/ -------------------------------------------------------------------------------- /Gruntfile.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusmcg/angular-table-restful/HEAD/Gruntfile.coffee -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusmcg/angular-table-restful/HEAD/README.md -------------------------------------------------------------------------------- /angular-table-restful.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusmcg/angular-table-restful/HEAD/angular-table-restful.css -------------------------------------------------------------------------------- /angular-table-restful.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusmcg/angular-table-restful/HEAD/angular-table-restful.js -------------------------------------------------------------------------------- /angular-table-restful.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusmcg/angular-table-restful/HEAD/angular-table-restful.min.js -------------------------------------------------------------------------------- /angular-table-restful.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusmcg/angular-table-restful/HEAD/angular-table-restful.min.map -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusmcg/angular-table-restful/HEAD/bower.json -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusmcg/angular-table-restful/HEAD/license.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusmcg/angular-table-restful/HEAD/package.json -------------------------------------------------------------------------------- /src/configuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusmcg/angular-table-restful/HEAD/src/configuration.js -------------------------------------------------------------------------------- /src/intro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusmcg/angular-table-restful/HEAD/src/intro.js -------------------------------------------------------------------------------- /src/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusmcg/angular-table-restful/HEAD/src/module.js -------------------------------------------------------------------------------- /src/outro.js: -------------------------------------------------------------------------------- 1 | 2 | }).call(this); --------------------------------------------------------------------------------