}
}
-function is_msie() {
- return navigator.userAgent.match("MSIE");
-}
-
function is_opera() {
return window.opera;
}
msg = "Exception: " + e.name + ", " + e.message +
"\nFunction: " + location + "()" +
"\nLocation: " + base_fname + ":" + e.lineNumber;
-
+
+ } else if (e.description) {
+ msg = "Exception: " + e.description + "\nFunction: " + location + "()";
} else {
msg = "Exception: " + e + "\nFunction: " + location + "()";
}
}
}
- if (has_img && feed_img && !is_msie()) {
+ if (has_img && feed_img) {
if (!feed_img.src.match(id + ".ico")) {
feed_img.src = getInitParam("icons_location") + "/" + id + ".ico";
}
<script type="text/javascript" src="functions.js?<?php echo $dt_add ?>"></script>
<script type="text/javascript" src="prefs.js?<?php echo $dt_add ?>"></script>
- <!--[if lt IE 7]>
- <script type="text/javascript" src="pngfix.js"></script>
- <link rel="stylesheet" type="text/css" href="ie6.css">
- <![endif]-->
-
- <!--[if IE 7]>
- <link rel="stylesheet" type="text/css" href="ie7.css">
- <![endif]-->
-
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<script type="text/javascript">
}
}
- debug("resize_headlines: HOR-mode");
+ debug("resize_headlines: HOR-mode: " + hor_offset);
c_frame.style.width = (400 + hor_offset) + "px";
h_frame.style.right = c_frame.offsetWidth - 1 + "px";
}
}
- debug("resize_headlines: VER-mode");
+ debug("resize_headlines: VER-mode: " + ver_offset);
- if (!is_msie()) {
- h_frame.style.height = (300 - ver_offset) + "px";
+ h_frame.style.height = (300 - ver_offset) + "px";
- c_frame.style.top = (h_frame.offsetTop + h_frame.offsetHeight + 1) + "px";
- h_frame.style.height = h_frame.offsetHeight + "px";
+ c_frame.style.top = (h_frame.offsetTop + h_frame.offsetHeight + 1) + "px";
+ h_frame.style.height = h_frame.offsetHeight + "px";
- var theme_c = 0;
+ var theme_c = 0;
- if (getInitParam("theme") == "graycube") theme_c = 1;
+ if (getInitParam("theme") == "graycube") theme_c = 1;
- resize_grab.style.top = (h_frame.offsetTop + h_frame.offsetHeight -
- 4 - theme_c) + "px";
- resize_grab.style.display = "block";
-
- } else {
- h_frame.style.height = document.documentElement.clientHeight * 0.3 + "px";
- c_frame.style.top = h_frame.offsetTop + h_frame.offsetHeight + 1 + "px";
-
- var c_bottom = document.documentElement.clientHeight;
-
- if (f_frame) {
- c_bottom = f_frame.offsetTop;
- }
-
- c_frame.style.height = c_bottom - (h_frame.offsetTop +
- h_frame.offsetHeight + 1) + "px";
- h_frame.style.height = h_frame.offsetHeight + "px";
-
- }
+ resize_grab.style.top = (h_frame.offsetTop + h_frame.offsetHeight -
+ 4 - theme_c) + "px";
+ resize_grab.style.display = "block";
}
ver_offset = parseInt(getCookie("ttrss_offset_ver"));
hor_offset = parseInt(getCookie("ttrss_offset_hor"));
+ /* fuck IE */
+
+ if (isNaN(hor_offset)) hor_offset = 0;
+ if (isNaN(ver_offset)) ver_offset = 0;
+
debug("offsets from cookies [x:y]: " + hor_offset + ":" + ver_offset);
resize_headlines();
<link rel="stylesheet" type="text/css" href="<?php echo $user_css_url ?>"/>
<?php } ?>
- <!--[if lt IE 7]>
- <script type="text/javascript" src="pngfix.js"></script>
- <link rel="stylesheet" type="text/css" href="ie6.css">
- <![endif]-->
-
- <!--[if IE 7]>
- <link rel="stylesheet" type="text/css" href="ie7.css">
- <![endif]-->
-
<link rel="shortcut icon" type="image/png" href="images/favicon.png">
<script type="text/javascript" src="prototype.js"></script>