diff options
author | Trent Richardson <trentdrichardson@gmail.com> | 2013-11-25 10:59:08 -0500 |
---|---|---|
committer | Trent Richardson <trentdrichardson@gmail.com> | 2013-11-25 10:59:08 -0500 |
commit | d7f0a685a519661d09f2eb5a32824fabd33f59b8 (patch) | |
tree | 9c1338e60b49abab6dcbe0695fea584accc9300d /dist/jquery-ui-timepicker-addon.js | |
parent | b73b6f7d14458518f6f2c8d951bb14f0b67a84db (diff) | |
download | jQuery-Timepicker-Addon-d7f0a685a519661d09f2eb5a32824fabd33f59b8.zip jQuery-Timepicker-Addon-d7f0a685a519661d09f2eb5a32824fabd33f59b8.tar.gz jQuery-Timepicker-Addon-d7f0a685a519661d09f2eb5a32824fabd33f59b8.tar.bz2 |
rebuild/verify changes
Diffstat (limited to 'dist/jquery-ui-timepicker-addon.js')
-rw-r--r-- | dist/jquery-ui-timepicker-addon.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dist/jquery-ui-timepicker-addon.js b/dist/jquery-ui-timepicker-addon.js index 2f59f45..a953105 100644 --- a/dist/jquery-ui-timepicker-addon.js +++ b/dist/jquery-ui-timepicker-addon.js @@ -1,4 +1,4 @@ -/*! jQuery Timepicker Addon - v1.4.2 - 2013-11-23 +/*! jQuery Timepicker Addon - v1.4.3 - 2013-11-23 * http://trentrichardson.com/examples/timepicker * Copyright (c) 2013 Trent Richardson; Licensed MIT */ (function ($) { @@ -16,7 +16,7 @@ */ $.extend($.ui, { timepicker: { - version: "1.4.2" + version: "1.4.3" } }); @@ -1605,7 +1605,7 @@ // object will only return the timezone offset for the current locale, so we // adjust it accordingly. If not using timezone option this won't matter.. // If a timezone is different in tp, keep the timezone as is - if (tp_inst) { + if (tp_inst && tp_date) { // look out for DST if tz wasn't specified if (!tp_inst.support.timezone && tp_inst._defaults.timezone === null) { tp_inst.timezone = tp_date.getTimezoneOffset() * -1; @@ -2140,6 +2140,6 @@ /* * Keep up with the version */ - $.timepicker.version = "1.4.2"; + $.timepicker.version = "1.4.3"; })(jQuery); |