Module: check_mk
Branch: master
Commit: c86c5895ff3b1dd51d8511847b4e0ec891e973f2
URL: http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=c86c5895ff3b1d…
Author: Lars Michelsen <lm(a)mathias-kettner.de>
Date: Mon Dec 27 13:22:56 2010 +0100
Removed scrollbars of sidebar in older IE versions and IE8 with compat mode
---
.bugs/9 | 3 +++
ChangeLog | 1 +
web/htdocs/main.py | 2 +-
3 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/.bugs/9 b/.bugs/9
index 1fa90e2..32b55c6 100644
--- a/.bugs/9
+++ b/.bugs/9
@@ -13,6 +13,9 @@ Multisite: Endgültig kompatibel mit IE machen. Bekannte Probleme:
=> Wurde behoben. Lösung: Async Request statt Sync Request
* Bug mit Verschieben der Sidebar wo das Tabellengerüst stehen bleibt
+ -> LM: Lässt sich bei mir nur im IE8 mit aktivierter Kompatibilitätsansicht
+ nachvollziehen
+
* Snapin "Views": Die Spiegelpunkte sind zu weit links, die Einrückung
klappt nicht.
* wenn man den Edit-Knopf nicht hat (wegen Berechtigungen), dann werden
diff --git a/ChangeLog b/ChangeLog
index 3d4bb6b..2659793 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -33,6 +33,7 @@
* Sidebar: Fixed snapin movement to the bottom of the snapin list in Opera
* Sidebar: Fixed scroll position saving in Opera
* Fixed reloading button animation in Chrome/IE (Changed request to async mode)
+ * Removed scrollbars of sidebar in older IE versions and IE8 with compat mode
Checks & Agents:
* Fixed problem with OnlyFrom: in Linux agent (df didn't work properly)
diff --git a/web/htdocs/main.py b/web/htdocs/main.py
index 854d989..44ff627 100644
--- a/web/htdocs/main.py
+++ b/web/htdocs/main.py
@@ -36,7 +36,7 @@ def page_index(html):
<link rel="shortcut icon" href="images/favicon.ico" type="image/ico">
</head>
<frameset cols="280,*" frameborder="0" framespacing="0" border="0">
- <frame src="side.py" name="side" noresize>
+ <frame src="side.py" name="side" noresize scrolling="no">
<frame src="%s" name="main" noresize>
</frameset>
</html>