Merge pull request from AleksandrChernyavenko/master

default value for combodate.maxYear ( must be current year, not 2015 )
This commit is contained in:
lorvent 2016-03-02 01:03:55 +00:00
commit 717d7f8594

@ -473,7 +473,7 @@
//initial value, can be `new Date()`
value: null,
minYear: 1970,
maxYear: 2015,
maxYear: (new Date().getFullYear()),
yearDescending: true,
minuteStep: 5,
secondStep: 1,
@ -483,4 +483,4 @@
smartDays: false // whether days in combo depend on selected month: 31, 30, 28
};
}(window.jQuery));
}(window.jQuery));