Fix semicolons

master
Trent 2012-01-11 11:34:44 -05:00
parent 4853a89b9d
commit f1e4a47170
1 changed files with 2 additions and 2 deletions

View File

@ -1073,7 +1073,7 @@ $.datepicker._gotoToday = function(id) {
var tzoffset = now.getTimezoneOffset(); // If +0100, returns -60
var tzsign = tzoffset > 0 ? '-' : '+';
tzoffset = Math.abs(tzoffset);
var tzmin = tzoffset % 60
var tzmin = tzoffset % 60;
tzoffset = tzsign + ('0' + (tzoffset - tzmin) / 60).slice(-2) + ('0' + tzmin).slice(-2);
if (tp_inst._defaults.timezoneIso8609)
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 this._base_formatDate(inst);
}
};
//#######################################################################################
// override options setter to add time to maxDate(Time) and minDate(Time). MaxDate