1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-25 11:57:42 +02:00

fix feeds frame size for Opera

This commit is contained in:
Andrew Dolgov 2006-02-24 12:01:50 +01:00
parent 937881b5f2
commit 5f136c9acc

View File

@ -411,6 +411,11 @@ function init_second_stage() {
daemon_enabled = getCookie("ttrss_vf_daemon");
if (navigator.userAgent.match("Opera")) {
var f = document.getElementById("feeds-frame");
f.style.height = document.body.scrollHeight - 200 + "px";
}
} catch (e) {
exception_error("init_second_stage", e);
}