code style improvements (for jscs)

This commit is contained in:
Adam Shaw
2014-01-31 14:05:48 -08:00
parent 758a235d19
commit d2b85cf80c
8 changed files with 17 additions and 15 deletions
+1 -1
View File
@@ -481,7 +481,7 @@ function View(element, calendar, viewName) {
var out = date.clone();
inc = inc || 1;
while (
isHiddenDayHash[ ( out.day() + (isExclusive ? inc : 0) + 7 ) % 7 ]
isHiddenDayHash[(out.day() + (isExclusive ? inc : 0) + 7) % 7]
) {
out.add('days', inc);
}