Skip to content

Commit 3e3dcda

Browse files
remove old code
1 parent 19e6e67 commit 3e3dcda

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

jquery-ui-timepicker-addon.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -184,10 +184,7 @@ $.extend(Timepicker.prototype, {
184184
if (tp_inst._defaults.timezoneList === null) {
185185
var timezoneList = ['-1200','-1100','-1000','-0930','-0900','-0800','-0700','-0600','-0500','-0430','-0400','-0330','-0300','-0200','-0100','+0000','+0100','+0200','+0300',
186186
'+0330','+0400','+0430','+0500','+0530','+0545','+0600','+0630','+0700','+0800','+0845','+0900','+0930','+1000','+1030','+1100','+1130','+1200','+1245','+1300','+1400'];
187-
// var timezoneList = [];
188-
// for (var i = -11; i <= 12; i++) {
189-
// timezoneList.push((i >= 0 ? '+' : '-') + ('0' + Math.abs(i).toString()).slice(-2) + '00');
190-
// }
187+
191188
if (tp_inst._defaults.timezoneIso8601) {
192189
timezoneList = $.map(timezoneList, function(val) {
193190
return val == '+0000' ? 'Z' : (val.substring(0, 3) + ':' + val.substring(3));

0 commit comments

Comments
 (0)