summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2010-10-05 15:48:09 +0400
committerAndrew Dolgov <[email protected]>2010-10-05 15:48:09 +0400
commit6240dabe2169a9353d075413653dfc988dfb1378 (patch)
tree3dcc6fe64625edec4e91d5d83c10ce1647814e8d /tt-rss.js
parent748345733db2182db3cb2bbe3cc664ebb2be0113 (diff)
resize_headlines: add workaround for an Opera bug
Diffstat (limited to 'tt-rss.js')
-rw-r--r--tt-rss.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/tt-rss.js b/tt-rss.js
index 831567abd..e4469d8fe 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -369,6 +369,10 @@ function resize_headlines(delta_x, delta_y) {
c_frame.style.top = (h_frame.offsetTop + h_frame.offsetHeight + 0) + "px";
h_frame.style.height = h_frame.offsetHeight + "px";
+ // Workaround for Opera: force the content page to be re-rendered,
+ // so it is not truncated:
+ var content_pane = $("content-insert");
+ content_pane.innerHTML = content_pane.innerHTML;
}
if (getInitParam("cookie_lifetime") != 0) {