├── .gitignore ├── CHANGELOG.md ├── Gruntfile.js ├── LICENSE ├── README.md ├── bower.json ├── lib └── angular.js ├── package.json └── src ├── angular-sortable-view.js └── angular-sortable-view.min.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | index.html 4 | templates -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilkp/angular-sortable-view/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilkp/angular-sortable-view/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilkp/angular-sortable-view/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilkp/angular-sortable-view/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilkp/angular-sortable-view/HEAD/bower.json -------------------------------------------------------------------------------- /lib/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilkp/angular-sortable-view/HEAD/lib/angular.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilkp/angular-sortable-view/HEAD/package.json -------------------------------------------------------------------------------- /src/angular-sortable-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilkp/angular-sortable-view/HEAD/src/angular-sortable-view.js -------------------------------------------------------------------------------- /src/angular-sortable-view.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilkp/angular-sortable-view/HEAD/src/angular-sortable-view.min.js --------------------------------------------------------------------------------