1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-14 03:15:54 +00:00

some more fixes for IE and resize_headlines

This commit is contained in:
Andrew Dolgov
2007-04-29 05:21:47 +01:00
parent 770bbb0297
commit 586822fdab
3 changed files with 32 additions and 9 deletions

View File

@@ -388,17 +388,32 @@ function init() {
function resize_headlines() {
if (is_msie()) return;
var h_frame = document.getElementById("headlines-frame");
var c_frame = document.getElementById("content-frame");
var f_frame = document.getElementById("footer");
if (!c_frame || !h_frame) return;
debug("resize_headlines");
if (c_frame && h_frame) {
if (!is_msie()) {
h_frame.style.height = 30 + "%";
c_frame.style.top = h_frame.offsetTop + h_frame.offsetHeight + 1 + "px";
h_frame.style.height = h_frame.offsetHeight + "px";
} else {
h_frame.style.height = document.documentElement.clientHeight * 0.3 + "px";
c_frame.style.top = h_frame.offsetTop + h_frame.offsetHeight + 1 + "px";
var c_bottom = document.documentElement.clientHeight;
if (f_frame) {
c_bottom = f_frame.offsetTop;
}
c_frame.style.height = c_bottom - (h_frame.offsetTop +
h_frame.offsetHeight + 1) + "px";
h_frame.style.height = h_frame.offsetHeight + "px";
}
}
@@ -410,10 +425,8 @@ function init_second_stage() {
delCookie("ttrss_vf_test");
if (!is_msie()) {
document.onresize = resize_headlines;
resize_headlines();
}
// document.onresize = resize_headlines;
resize_headlines();
var toolbar = document.forms["main_toolbar_form"];