From b7293ca2a566dc57555307e3816a1b583a53ee2e Mon Sep 17 00:00:00 2001 From: Jun Omae Date: Fri, 12 Aug 2011 19:09:22 +0900 Subject: [PATCH] When `showTimezone` is true, "Now" button sets the current timezone. --- jquery-ui-timepicker-addon.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jquery-ui-timepicker-addon.js b/jquery-ui-timepicker-addon.js index 6973632..24f8c28 100644 --- a/jquery-ui-timepicker-addon.js +++ b/jquery-ui-timepicker-addon.js @@ -991,7 +991,7 @@ $.datepicker._gotoToday = function(id) { this._base_gotoToday(id); var now = new Date(); var tp_inst = this._get(inst, 'timepicker'); - if (tp_inst.timezone_select) { + if (tp_inst._defaults.showTimezone && tp_inst.timezone_select) { var tzoffset = now.getTimezoneOffset(); // If +0100, returns -60 var tzsign = tzoffset > 0 ? '-' : '+'; tzoffset = Math.abs(tzoffset);