Skip to content

Commit f1e4a47

Browse files
Fix semicolons
1 parent 4853a89 commit f1e4a47

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

jquery-ui-timepicker-addon.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1073,7 +1073,7 @@ $.datepicker._gotoToday = function(id) {
10731073
var tzoffset = now.getTimezoneOffset(); // If +0100, returns -60
10741074
var tzsign = tzoffset > 0 ? '-' : '+';
10751075
tzoffset = Math.abs(tzoffset);
1076-
var tzmin = tzoffset % 60
1076+
var tzmin = tzoffset % 60;
10771077
tzoffset = tzsign + ('0' + (tzoffset - tzmin) / 60).slice(-2) + ('0' + tzmin).slice(-2);
10781078
if (tp_inst._defaults.timezoneIso8609)
10791079
tzoffset = tzoffset.substring(0, 3) + ':' + tzoffset.substring(3);
@@ -1234,7 +1234,7 @@ $.datepicker._formatDate = function(inst, day, month, year){
12341234
return tp_inst.$input.val();
12351235
}
12361236
return this._base_formatDate(inst);
1237-
}
1237+
};
12381238

12391239
//#######################################################################################
12401240
// override options setter to add time to maxDate(Time) and minDate(Time). MaxDate

0 commit comments

Comments
 (0)