Update text field when time is set with setDate or setTime methods (fixes bug I introduced in commit 496ee3a for _onTimeChange)

master
doublerebel 2010-12-05 14:18:16 -08:00
parent 48620930ab
commit 3ca9079892
1 changed files with 2 additions and 1 deletions

View File

@ -684,7 +684,8 @@ $.datepicker._setTime = function(inst, date) {
if (tp_inst.second_slider) tp_inst.second_slider.slider('value', second);
else tp_inst.second = second;
tp_inst._onTimeChange(true);
tp_inst._onTimeChange();
tp_inst._updateDateTime();
}
};