fixed all pass through methods to datepicker

This commit is contained in:
Trent Richardson 2010-11-18 14:10:43 -05:00
parent 294b8cf850
commit 48f17b1f71

View file

@ -479,19 +479,17 @@ $.fn.extend({
tmp_args = arguments; tmp_args = arguments;
if (typeof(o) == 'string') { if (typeof(o) == 'string') {
if (o == 'getDate') if (o == 'setDate') return this.each(function() {
return $(this).datepicker(o); return $(this).datepicker(o, tmp_args[1]);
else if (o == 'setDate') return this.each(function() {
$(this).datepicker(o, tmp_args[1]);
}); });
else if(o == 'option' && typeof(tmp_args[1]) == 'string') return this.each(function() { else if(o == 'option' && typeof(tmp_args[1]) == 'string') return this.each(function() {
$(this).datepicker(o, tmp_args[1], tmp_args[2]); return $(this).datepicker(o, tmp_args[1], tmp_args[2]);
}); });
else if(o == 'dialog') return this.each(function() { else if(o == 'dialog') return this.each(function() {
$(this).datepicker(o, tmp_args[1], tmp_args[2], tmp_args[3], tmp_args[4]); return $(this).datepicker(o, tmp_args[1], tmp_args[2], tmp_args[3], tmp_args[4]);
}); });
else return this.each(function() { else return this.each(function() {
$(this).datepicker(o); return $(this).datepicker(o);
}); });
} else { } else {
var tp_inst = new Timepicker(), var tp_inst = new Timepicker(),