1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-14 05:25:56 +00:00

center infobox on screen

This commit is contained in:
Andrew Dolgov
2006-03-20 12:24:34 +01:00
parent 991ee9e2b5
commit c38c2b69c9
3 changed files with 20 additions and 5 deletions

View File

@@ -868,3 +868,20 @@ function leading_zero(p) {
if (s.length == 1) s = "0" + s;
return s;
}
function center_element(e) {
var c_width = document.body.clientWidth;
var c_height = document.body.clientHeight;
var c_scroll = document.body.scrollTop;
var e_width = e.clientWidth;
var e_height = e.clientHeight;
var set_y = (c_height / 2) + c_scroll - (e_height / 2);
var set_x = (c_width / 2) - (e_width / 2);
e.style.top = set_y + "px";
e.style.left = set_x + "px";
}