fixed date format bug
This commit is contained in:
parent
675043dfd0
commit
0851f323a9
1 changed files with 2 additions and 1 deletions
3
jquery-ui-timepicker-addon.js
vendored
3
jquery-ui-timepicker-addon.js
vendored
|
@ -87,7 +87,8 @@
|
||||||
|
|
||||||
if (!this.defaults.timeOnly) {
|
if (!this.defaults.timeOnly) {
|
||||||
//the time should come after x number of characters and a space. x = at least the length of text specified by the date format
|
//the time should come after x number of characters and a space. x = at least the length of text specified by the date format
|
||||||
regstr = '.{' + this.defaults.dateFormat.length + ',}\\s+' + regstr;
|
var dp_dateFormat = $.datepicker._get(dp_inst, 'dateFormat');
|
||||||
|
regstr = '.{' + dp_dateFormat.length + ',}\\s+' + regstr;
|
||||||
}
|
}
|
||||||
|
|
||||||
var order = this.getFormatPositions();
|
var order = this.getFormatPositions();
|
||||||
|
|
Loading…
Reference in a new issue