fixed regex to parse time and fixed timeOnly bug
This commit is contained in:
parent
1dd304b2f9
commit
c9ff8007fd
13
jquery-ui-timepicker-addon.js
vendored
13
jquery-ui-timepicker-addon.js
vendored
|
@ -76,7 +76,7 @@
|
||||||
|
|
||||||
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.timeFormat.length + ',}\\s+' + regstr;
|
regstr = '.{' + this.defaults.dateFormat.length + ',}\\s+' + regstr;
|
||||||
}
|
}
|
||||||
|
|
||||||
var order = this.getFormatPositions();
|
var order = this.getFormatPositions();
|
||||||
|
@ -306,7 +306,10 @@
|
||||||
var formattedDateTime = this.formattedDate;
|
var formattedDateTime = this.formattedDate;
|
||||||
var timeAvailable = dt !== null && tp_inst.timeDefined;
|
var timeAvailable = dt !== null && tp_inst.timeDefined;
|
||||||
|
|
||||||
if (this.defaults.timeOnly !== true && (this.defaults.alwaysSetTime || timeAvailable)) {
|
if(this.defaults.timeOnly === true){
|
||||||
|
formattedDateTime = this.formattedTime;
|
||||||
|
}
|
||||||
|
else if (this.defaults.timeOnly !== true && (this.defaults.alwaysSetTime || timeAvailable)) {
|
||||||
formattedDateTime += ' ' + this.formattedTime;
|
formattedDateTime += ' ' + this.formattedTime;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -315,9 +318,9 @@
|
||||||
},
|
},
|
||||||
|
|
||||||
setDefaults: function(settings) {
|
setDefaults: function(settings) {
|
||||||
extendRemove(this.defaults, settings || {});
|
extendRemove(this.defaults, settings || {});
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
//########################################################################
|
//########################################################################
|
||||||
|
|
Loading…
Reference in a new issue