Fix semicolons

This commit is contained in:
Trent 2012-01-11 11:34:44 -05:00
parent 4853a89b9d
commit f1e4a47170

View file

@ -1073,7 +1073,7 @@ $.datepicker._gotoToday = function(id) {
var tzoffset = now.getTimezoneOffset(); // If +0100, returns -60 var tzoffset = now.getTimezoneOffset(); // If +0100, returns -60
var tzsign = tzoffset > 0 ? '-' : '+'; var tzsign = tzoffset > 0 ? '-' : '+';
tzoffset = Math.abs(tzoffset); tzoffset = Math.abs(tzoffset);
var tzmin = tzoffset % 60 var tzmin = tzoffset % 60;
tzoffset = tzsign + ('0' + (tzoffset - tzmin) / 60).slice(-2) + ('0' + tzmin).slice(-2); tzoffset = tzsign + ('0' + (tzoffset - tzmin) / 60).slice(-2) + ('0' + tzmin).slice(-2);
if (tp_inst._defaults.timezoneIso8609) if (tp_inst._defaults.timezoneIso8609)
tzoffset = tzoffset.substring(0, 3) + ':' + tzoffset.substring(3); tzoffset = tzoffset.substring(0, 3) + ':' + tzoffset.substring(3);
@ -1234,7 +1234,7 @@ $.datepicker._formatDate = function(inst, day, month, year){
return tp_inst.$input.val(); return tp_inst.$input.val();
} }
return this._base_formatDate(inst); return this._base_formatDate(inst);
} };
//####################################################################################### //#######################################################################################
// override options setter to add time to maxDate(Time) and minDate(Time). MaxDate // override options setter to add time to maxDate(Time) and minDate(Time). MaxDate