├── .gitignore ├── .idea ├── .name ├── angular-datepicker.iml ├── encodings.xml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── libraries │ └── Generated_files.xml ├── misc.xml ├── modules.xml ├── scopes │ └── scope_settings.xml └── vcs.xml ├── Gruntfile.coffee ├── LICENSE ├── README.md ├── bower.json ├── dist ├── angular-bootstrap-datepicker.css ├── angular-bootstrap-datepicker.js └── angular-bootstrap-datepicker.min.js ├── example ├── angular-bootstrap-datepicker.css ├── angular-bootstrap-datepicker.js ├── angular.js ├── bootstrap │ ├── css │ │ ├── bootstrap-responsive.css │ │ ├── bootstrap.css │ │ └── docs.css │ ├── ico │ │ ├── apple-touch-icon-114-precomposed.png │ │ ├── apple-touch-icon-144-precomposed.png │ │ ├── apple-touch-icon-57-precomposed.png │ │ ├── apple-touch-icon-72-precomposed.png │ │ ├── favicon.ico │ │ └── favicon.png │ └── img │ │ ├── bootstrap-docs-readme.png │ │ ├── bootstrap-mdo-sfmoma-01.jpg │ │ ├── bootstrap-mdo-sfmoma-02.jpg │ │ ├── bootstrap-mdo-sfmoma-03.jpg │ │ ├── bs-docs-bootstrap-features.png │ │ ├── bs-docs-masthead-pattern.png │ │ ├── bs-docs-responsive-illustrations.png │ │ ├── bs-docs-twitter-github.png │ │ ├── example-sites │ │ ├── 8020select.png │ │ ├── adoptahydrant.png │ │ ├── breakingnews.png │ │ ├── fleetio.png │ │ ├── gathercontent.png │ │ ├── jshint.png │ │ ├── kippt.png │ │ └── soundready.png │ │ ├── examples │ │ ├── bootstrap-example-carousel.png │ │ ├── bootstrap-example-fluid.png │ │ ├── bootstrap-example-justified-nav.png │ │ ├── bootstrap-example-marketing-narrow.png │ │ ├── bootstrap-example-marketing.png │ │ ├── bootstrap-example-signin.png │ │ ├── bootstrap-example-starter.png │ │ ├── bootstrap-example-sticky-footer.png │ │ ├── browser-icon-chrome.png │ │ ├── browser-icon-firefox.png │ │ ├── browser-icon-safari.png │ │ ├── slide-01.jpg │ │ ├── slide-02.jpg │ │ └── slide-03.jpg │ │ ├── glyphicons-halflings-white.png │ │ ├── glyphicons-halflings.png │ │ ├── grid-baseline-20px.png │ │ ├── less-logo-large.png │ │ └── responsive-illustrations.png ├── demo.html └── jquery.js ├── grunt.bat ├── package.json ├── src └── angular-bootstrap-datepicker.coffee └── test ├── system ├── datepicker.ui.spec.coffee ├── jQueryFnDsl.js └── test.html └── unit └── datepicker.spec.coffee /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | angular-datepicker -------------------------------------------------------------------------------- /.idea/angular-datepicker.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/.idea/angular-datepicker.iml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/libraries/Generated_files.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/.idea/libraries/Generated_files.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/.idea/scopes/scope_settings.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /Gruntfile.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/Gruntfile.coffee -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/bower.json -------------------------------------------------------------------------------- /dist/angular-bootstrap-datepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/dist/angular-bootstrap-datepicker.css -------------------------------------------------------------------------------- /dist/angular-bootstrap-datepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/dist/angular-bootstrap-datepicker.js -------------------------------------------------------------------------------- /dist/angular-bootstrap-datepicker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/dist/angular-bootstrap-datepicker.min.js -------------------------------------------------------------------------------- /example/angular-bootstrap-datepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/example/angular-bootstrap-datepicker.css -------------------------------------------------------------------------------- /example/angular-bootstrap-datepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/example/angular-bootstrap-datepicker.js -------------------------------------------------------------------------------- /example/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/example/angular.js -------------------------------------------------------------------------------- /example/bootstrap/css/bootstrap-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/example/bootstrap/css/bootstrap-responsive.css -------------------------------------------------------------------------------- /example/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/example/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /example/bootstrap/css/docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/example/bootstrap/css/docs.css -------------------------------------------------------------------------------- /example/bootstrap/ico/apple-touch-icon-114-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/example/bootstrap/ico/apple-touch-icon-114-precomposed.png -------------------------------------------------------------------------------- /example/bootstrap/ico/apple-touch-icon-144-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/example/bootstrap/ico/apple-touch-icon-144-precomposed.png -------------------------------------------------------------------------------- /example/bootstrap/ico/apple-touch-icon-57-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/example/bootstrap/ico/apple-touch-icon-57-precomposed.png -------------------------------------------------------------------------------- /example/bootstrap/ico/apple-touch-icon-72-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/example/bootstrap/ico/apple-touch-icon-72-precomposed.png -------------------------------------------------------------------------------- /example/bootstrap/ico/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/example/bootstrap/ico/favicon.ico -------------------------------------------------------------------------------- /example/bootstrap/ico/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/example/bootstrap/ico/favicon.png -------------------------------------------------------------------------------- /example/bootstrap/img/bootstrap-docs-readme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/example/bootstrap/img/bootstrap-docs-readme.png -------------------------------------------------------------------------------- /example/bootstrap/img/bootstrap-mdo-sfmoma-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/example/bootstrap/img/bootstrap-mdo-sfmoma-01.jpg -------------------------------------------------------------------------------- /example/bootstrap/img/bootstrap-mdo-sfmoma-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/example/bootstrap/img/bootstrap-mdo-sfmoma-02.jpg -------------------------------------------------------------------------------- /example/bootstrap/img/bootstrap-mdo-sfmoma-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/example/bootstrap/img/bootstrap-mdo-sfmoma-03.jpg -------------------------------------------------------------------------------- /example/bootstrap/img/bs-docs-bootstrap-features.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/example/bootstrap/img/bs-docs-bootstrap-features.png -------------------------------------------------------------------------------- /example/bootstrap/img/bs-docs-masthead-pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/example/bootstrap/img/bs-docs-masthead-pattern.png -------------------------------------------------------------------------------- /example/bootstrap/img/bs-docs-responsive-illustrations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/example/bootstrap/img/bs-docs-responsive-illustrations.png -------------------------------------------------------------------------------- /example/bootstrap/img/bs-docs-twitter-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/example/bootstrap/img/bs-docs-twitter-github.png -------------------------------------------------------------------------------- /example/bootstrap/img/example-sites/8020select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/example/bootstrap/img/example-sites/8020select.png -------------------------------------------------------------------------------- /example/bootstrap/img/example-sites/adoptahydrant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/example/bootstrap/img/example-sites/adoptahydrant.png -------------------------------------------------------------------------------- /example/bootstrap/img/example-sites/breakingnews.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/example/bootstrap/img/example-sites/breakingnews.png -------------------------------------------------------------------------------- /example/bootstrap/img/example-sites/fleetio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/example/bootstrap/img/example-sites/fleetio.png -------------------------------------------------------------------------------- /example/bootstrap/img/example-sites/gathercontent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/example/bootstrap/img/example-sites/gathercontent.png -------------------------------------------------------------------------------- /example/bootstrap/img/example-sites/jshint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/example/bootstrap/img/example-sites/jshint.png -------------------------------------------------------------------------------- /example/bootstrap/img/example-sites/kippt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/example/bootstrap/img/example-sites/kippt.png -------------------------------------------------------------------------------- /example/bootstrap/img/example-sites/soundready.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/example/bootstrap/img/example-sites/soundready.png -------------------------------------------------------------------------------- /example/bootstrap/img/examples/bootstrap-example-carousel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/example/bootstrap/img/examples/bootstrap-example-carousel.png -------------------------------------------------------------------------------- /example/bootstrap/img/examples/bootstrap-example-fluid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/example/bootstrap/img/examples/bootstrap-example-fluid.png -------------------------------------------------------------------------------- /example/bootstrap/img/examples/bootstrap-example-justified-nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/example/bootstrap/img/examples/bootstrap-example-justified-nav.png -------------------------------------------------------------------------------- /example/bootstrap/img/examples/bootstrap-example-marketing-narrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/example/bootstrap/img/examples/bootstrap-example-marketing-narrow.png -------------------------------------------------------------------------------- /example/bootstrap/img/examples/bootstrap-example-marketing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/example/bootstrap/img/examples/bootstrap-example-marketing.png -------------------------------------------------------------------------------- /example/bootstrap/img/examples/bootstrap-example-signin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/example/bootstrap/img/examples/bootstrap-example-signin.png -------------------------------------------------------------------------------- /example/bootstrap/img/examples/bootstrap-example-starter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/example/bootstrap/img/examples/bootstrap-example-starter.png -------------------------------------------------------------------------------- /example/bootstrap/img/examples/bootstrap-example-sticky-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/example/bootstrap/img/examples/bootstrap-example-sticky-footer.png -------------------------------------------------------------------------------- /example/bootstrap/img/examples/browser-icon-chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/example/bootstrap/img/examples/browser-icon-chrome.png -------------------------------------------------------------------------------- /example/bootstrap/img/examples/browser-icon-firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/example/bootstrap/img/examples/browser-icon-firefox.png -------------------------------------------------------------------------------- /example/bootstrap/img/examples/browser-icon-safari.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/example/bootstrap/img/examples/browser-icon-safari.png -------------------------------------------------------------------------------- /example/bootstrap/img/examples/slide-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/example/bootstrap/img/examples/slide-01.jpg -------------------------------------------------------------------------------- /example/bootstrap/img/examples/slide-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/example/bootstrap/img/examples/slide-02.jpg -------------------------------------------------------------------------------- /example/bootstrap/img/examples/slide-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/example/bootstrap/img/examples/slide-03.jpg -------------------------------------------------------------------------------- /example/bootstrap/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/example/bootstrap/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /example/bootstrap/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/example/bootstrap/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /example/bootstrap/img/grid-baseline-20px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/example/bootstrap/img/grid-baseline-20px.png -------------------------------------------------------------------------------- /example/bootstrap/img/less-logo-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/example/bootstrap/img/less-logo-large.png -------------------------------------------------------------------------------- /example/bootstrap/img/responsive-illustrations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/example/bootstrap/img/responsive-illustrations.png -------------------------------------------------------------------------------- /example/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/example/demo.html -------------------------------------------------------------------------------- /example/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/example/jquery.js -------------------------------------------------------------------------------- /grunt.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/grunt.bat -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/package.json -------------------------------------------------------------------------------- /src/angular-bootstrap-datepicker.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/src/angular-bootstrap-datepicker.coffee -------------------------------------------------------------------------------- /test/system/datepicker.ui.spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/test/system/datepicker.ui.spec.coffee -------------------------------------------------------------------------------- /test/system/jQueryFnDsl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/test/system/jQueryFnDsl.js -------------------------------------------------------------------------------- /test/system/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/test/system/test.html -------------------------------------------------------------------------------- /test/unit/datepicker.spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cletourneau/angular-bootstrap-datepicker/HEAD/test/unit/datepicker.spec.coffee --------------------------------------------------------------------------------