disable headline height fix for Opera

This commit is contained in:
Andrew Dolgov 2006-02-25 19:55:14 +01:00
parent e0b6a7378e
commit 77d519852a
1 changed files with 2 additions and 2 deletions

View File

@ -425,13 +425,13 @@ function init_second_stage() {
if (navigator.userAgent.match("Opera")) {
resize_feeds_frame();
// fix headlines frame height for Opera
/* // fix headlines frame height for Opera
var h = document.getElementById("headlines");
var c = document.getElementById("content");
var nh = document.body.scrollHeight * 0.25;
h.style.height = nh + "px";
c.style.height = c.scrollHeight - nh + "px";
c.style.height = c.scrollHeight - nh + "px"; */
}