mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-09-04 21:25:04 +00:00
multiColumns print view + bugFixes
This commit is contained in:
committed by
Francis Lachapelle
parent
720a946d39
commit
257d731e04
@@ -3807,6 +3807,19 @@ function drawNowLine() {
|
||||
}
|
||||
setTimeout("drawNowLine ();", 60000); // 1 min.
|
||||
}
|
||||
else {
|
||||
var target = targets[0].getElementsByClassName("clickableHourCell")[hours];
|
||||
if (target) {
|
||||
var div = targets[0].getElementsByClassName("nowLineDisplay")[0];
|
||||
if (!div)
|
||||
div = new Element("div", {'class': 'nowLineDisplay'});
|
||||
|
||||
div.style.top = parseInt((minutes * target.offsetHeight / 60) - 1) + "px";
|
||||
target.insertBefore(div, target.firstChild);
|
||||
}
|
||||
}
|
||||
setTimeout("drawNowLine ();", 60000); // 1 min.
|
||||
}
|
||||
}
|
||||
|
||||
function onListCollapse(event, element) {
|
||||
|
||||
Reference in New Issue
Block a user