summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-04-29 04:46:08 +0100
committerAndrew Dolgov <[email protected]>2007-04-29 04:46:08 +0100
commit770bbb0297280e4fc7d75a1382070df492d3027d (patch)
tree3e770c397c755643b226df4c36e3d3e4b5f4af06 /tt-rss.js
parent0c3d1219ea8c2df575f2df28542bcbbbcdc0249a (diff)
block resize_headlines() for MSIE
Diffstat (limited to 'tt-rss.js')
-rw-r--r--tt-rss.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/tt-rss.js b/tt-rss.js
index 91f0b3c30..89497e990 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();