File: bugs.js

package info (click to toggle)
zthreads 2.3.2-7
  • links: PTS
  • area: main
  • in suites: wheezy, wheezy-backports
  • size: 6,076 kB
  • sloc: sh: 10,542; cpp: 6,034; ansic: 126; makefile: 119
file content (9 lines) | stat: -rw-r--r-- 259 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
// Fix for bug in IE6.0 float handling - from plone.org

if (document.all && window.attachEvent) window.attachEvent("onload", fixWinIE);
function fixWinIE() {
    try {
        document.getElementById('content').style.display = 'block';
    } catch(er) {}
}