New version 2.5.12

This commit is contained in:
Chupurnov Valeriy 2017-11-10 20:11:03 +05:00
parent 5ba8971989
commit fb292ce660
3 changed files with 3 additions and 3 deletions

View File

@ -1781,7 +1781,7 @@ var datetimepickerFactory = function ($) {
for (i = 0, j = 0; i < (options.hours12 ? 12 : 24); i += 1) {
for (j = 0; j < 60; j += options.step) {
h = (i < 10 ? '0' : '') + i;
m = (j < 10 ? _xdsoft_datetime.now().getMinutes() : '') + j;
m = (j < 10 ? '0' : '') + j;
line_time(h, m);
}
}

File diff suppressed because one or more lines are too long

View File

@ -1,6 +1,6 @@
{
"name": "jquery-datetimepicker",
"version": "2.5.11",
"version": "2.5.12",
"description": "jQuery Plugin DateTimePicker it is DatePicker and TimePicker in one",
"main": "build/jquery.datetimepicker.full.min.js",
"scripts": {