code style

This commit is contained in:
Sami Samhuri 2015-02-07 19:36:10 -08:00
parent f1581a3c9d
commit 6ab81c89cb

View file

@ -112,7 +112,8 @@
} }
} }
date = _cachedDate; date = _cachedDate;
} else { }
else {
timestamp = date.getTime(); timestamp = date.getTime();
if (_useUtcBasedDate) { if (_useUtcBasedDate) {
@ -442,7 +443,8 @@
customTimezoneOffset = sign * ((60 * hours) + minutes) * 60 * 1000; customTimezoneOffset = sign * ((60 * hours) + minutes) * 60 * 1000;
// in minutes: 420 // in minutes: 420
} else if (timezoneType === 'number'){ }
else if (timezoneType === 'number') {
customTimezoneOffset = timezone * 60 * 1000; customTimezoneOffset = timezone * 60 * 1000;
} }
} }