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
1 changed files with 5 additions and 0 deletions

View File

@ -410,6 +410,11 @@ function init_second_stage() {
dropboxSelect(limitbox, getCookie("ttrss_vf_limit"));
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);