From 770bbb0297280e4fc7d75a1382070df492d3027d Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sun, 29 Apr 2007 04:46:08 +0100 Subject: [PATCH] block resize_headlines() for MSIE --- tt-rss.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tt-rss.js b/tt-rss.js index 91f0b3c3..89497e99 100644 --- a/tt-rss.js +++ b/tt-rss.js @@ -387,6 +387,9 @@ function init() { } function resize_headlines() { + + if (is_msie()) return; + var h_frame = document.getElementById("headlines-frame"); var c_frame = document.getElementById("content-frame"); @@ -406,7 +409,7 @@ function init_second_stage() { cookie_lifetime = getCookie("ttrss_cltime"); delCookie("ttrss_vf_test"); - + if (!is_msie()) { document.onresize = resize_headlines; resize_headlines(); -- 2.39.2