├── .gitignore ├── .jshintrc ├── LICENSE ├── README.md ├── bower.json ├── karma.conf.js ├── package.json ├── pikaday-angular.js ├── sample ├── examples.html └── index.html └── test ├── coercion_test.js └── mocha.opts /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | /notes.txt 3 | /tmp 4 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nverba/pikaday-angular/HEAD/.jshintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nverba/pikaday-angular/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nverba/pikaday-angular/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nverba/pikaday-angular/HEAD/bower.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nverba/pikaday-angular/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nverba/pikaday-angular/HEAD/package.json -------------------------------------------------------------------------------- /pikaday-angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nverba/pikaday-angular/HEAD/pikaday-angular.js -------------------------------------------------------------------------------- /sample/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nverba/pikaday-angular/HEAD/sample/examples.html -------------------------------------------------------------------------------- /sample/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nverba/pikaday-angular/HEAD/sample/index.html -------------------------------------------------------------------------------- /test/coercion_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nverba/pikaday-angular/HEAD/test/coercion_test.js -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- 1 | --reporter spec 2 | --ui tdd 3 | --------------------------------------------------------------------------------