We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ceabba8 commit 897bea1Copy full SHA for 897bea1
jquery-ui-timepicker-addon.js
@@ -1025,6 +1025,8 @@ $.datepicker._gotoToday = function(id) {
1025
tzoffset = Math.abs(tzoffset);
1026
var tzmin = tzoffset % 60
1027
tzoffset = tzsign + ('0' + (tzoffset - tzmin) / 60).slice(-2) + ('0' + tzmin).slice(-2);
1028
+ if (tp_inst._defaults.timezoneIso8609)
1029
+ tzoffset = tzoffset.substring(0, 3) + ':' + tzoffset.substring(3);
1030
tp_inst.timezone_select.val(tzoffset);
1031
}
1032
this._setTime(inst, now);
0 commit comments