bower install angular-date-range-picker
NOTE: Since bindonce hasn't yet been released for angular 1.2 bower will ask you to select angular version - please choose 1.2.x.
// require dateRangePicker module as dependency
angular.module('myApp', ['dateRangePicker']);// specify default date range in controller
$scope.dates = moment().range("2012-11-05", "2013-01-25")<!-- use 'date-range-picker' directive in view -->
<input type="text" date-range-picker ng-model="dates"/>Due to usage of track by $index it is impossible to provide one version for both angular < 1.2 and >= 1.2.
| Angular version | date-range-picker version |
|---|---|
| 1.2.x | 0.3.x |
| 1.1.x | 0.2.x |
| 1.0.x | 0.2.x |
npm install
bower install
grunt watch
open test/index.html- Fork it
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create new Pull Request