├── .gitignore ├── .jshintrc ├── History.md ├── LICENSE ├── README.md ├── angular-file-model.js ├── bower.json ├── karma.conf.js ├── package.json └── test.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | bower_components/ 3 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbar/angular-file-model/HEAD/.jshintrc -------------------------------------------------------------------------------- /History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbar/angular-file-model/HEAD/History.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbar/angular-file-model/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbar/angular-file-model/HEAD/README.md -------------------------------------------------------------------------------- /angular-file-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbar/angular-file-model/HEAD/angular-file-model.js -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbar/angular-file-model/HEAD/bower.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbar/angular-file-model/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbar/angular-file-model/HEAD/package.json -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbar/angular-file-model/HEAD/test.js --------------------------------------------------------------------------------