Corrected methods
This commit is contained in:
parent
5a598298de
commit
88a0b943bc
16
jquery-ui-timepicker-addon.js
vendored
16
jquery-ui-timepicker-addon.js
vendored
|
@ -529,8 +529,8 @@ $.fn.extend({
|
||||||
|
|
||||||
if (typeof o == 'object') tmp_args[0] = $.extend(o, { timeOnly: true });
|
if (typeof o == 'object') tmp_args[0] = $.extend(o, { timeOnly: true });
|
||||||
|
|
||||||
return this.each(function() {
|
return $(this).each(function() {
|
||||||
$.fn.datepicker.apply(this, tmp_args);
|
$.fn.datetimepicker.apply($(this), tmp_args);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -542,10 +542,14 @@ $.fn.extend({
|
||||||
var $input = this,
|
var $input = this,
|
||||||
tmp_args = arguments;
|
tmp_args = arguments;
|
||||||
|
|
||||||
if (typeof(o) == 'string')
|
if (typeof(o) == 'string'){
|
||||||
return this.each(function() {
|
if(o == 'getDate')
|
||||||
$.fn.datepicker.apply(this, tmp_args);
|
return $.fn.datepicker.apply($(this), tmp_args);
|
||||||
});
|
else
|
||||||
|
return this.each(function() {
|
||||||
|
$.fn.datepicker.apply($(this), tmp_args);
|
||||||
|
});
|
||||||
|
}
|
||||||
else
|
else
|
||||||
return this.each(function() {
|
return this.each(function() {
|
||||||
$(this).datepicker($.timepicker._newInst($input, o)._defaults);
|
$(this).datepicker($.timepicker._newInst($input, o)._defaults);
|
||||||
|
|
Loading…
Reference in a new issue