|
|
|
@ -222,14 +222,14 @@ class ShiftCalendarRenderer
|
|
|
|
return div('tick day');
|
|
|
|
return div('tick day');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return div('tick day', [
|
|
|
|
return div('tick day', [
|
|
|
|
date('m-d<b\r />H:i', $time)
|
|
|
|
date(__('m-d'), $time) .'<br>'.date(__('H:i'), $time)
|
|
|
|
]);
|
|
|
|
]);
|
|
|
|
} elseif ($time % (60 * 60) == 0) {
|
|
|
|
} elseif ($time % (60 * 60) == 0) {
|
|
|
|
if (!$label) {
|
|
|
|
if (!$label) {
|
|
|
|
return div('tick hour');
|
|
|
|
return div('tick hour');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return div('tick hour', [
|
|
|
|
return div('tick hour', [
|
|
|
|
date('m-d<b\r />H:i', $time)
|
|
|
|
date(__('m-d'), $time) .'<br>'.date(__('H:i'), $time)
|
|
|
|
]);
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return div('tick');
|
|
|
|
return div('tick');
|
|
|
|
|