diff options
author | Trent Richardson <trentdrichardson@gmail.com> | 2013-01-18 04:55:02 -0800 |
---|---|---|
committer | Trent Richardson <trentdrichardson@gmail.com> | 2013-01-18 04:55:02 -0800 |
commit | 998ae43f9c08e9c2b678b55cf665ce84f2ac2c48 (patch) | |
tree | 85747e92345401bc2d3b7dedb55d13ed7795e516 | |
parent | ed56a3b8a419e0f2862ccec2457b700bc74fc1d3 (diff) | |
parent | 13ab774347c36667ead6b112ab69683baf0341f2 (diff) | |
download | jQuery-Timepicker-Addon-998ae43f9c08e9c2b678b55cf665ce84f2ac2c48.zip jQuery-Timepicker-Addon-998ae43f9c08e9c2b678b55cf665ce84f2ac2c48.tar.gz jQuery-Timepicker-Addon-998ae43f9c08e9c2b678b55cf665ce84f2ac2c48.tar.bz2 |
Merge pull request #535 from magnetik/patch-1
Fixes #471
-rw-r--r-- | jquery-ui-timepicker-addon.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/jquery-ui-timepicker-addon.js b/jquery-ui-timepicker-addon.js index 648af36..eb0cb21 100644 --- a/jquery-ui-timepicker-addon.js +++ b/jquery-ui-timepicker-addon.js @@ -1279,11 +1279,11 @@ if (tp_inst) { tp_inst._addTimePicker(inst); - if (tp_inst._defaults.useLocalTimezone) { //checks daylight saving with the new date. - var date = new Date(inst.selectedYear, inst.selectedMonth, inst.selectedDay, 12); - selectLocalTimeZone(tp_inst, date); - tp_inst._onTimeChange(); - } +// if (tp_inst._defaults.useLocalTimezone) { //checks daylight saving with the new date. +// var date = new Date(inst.selectedYear, inst.selectedMonth, inst.selectedDay, 12); +// selectLocalTimeZone(tp_inst, date); +// tp_inst._onTimeChange(); +// } } } }; |