Reflow page to fix gap between bugzilla-body and footer in IE8

3col
Vitaliy Filippov 2015-02-02 18:24:26 +03:00
parent cdd2df9478
commit 6fb9ce94bd
1 changed files with 10 additions and 0 deletions

View File

@ -25,6 +25,11 @@ function initControlledFields()
{
doInit(i);
}
if (navigator.appName == 'Microsoft Internet Explorer')
{
// :-X reflow page to hide the gap between bugzilla-body and footer in IE8
document.body.className = document.body.className;
}
}
function initControlledField(id)
@ -64,6 +69,11 @@ function handleControllerField_this(e, nonfirst)
{
handleControllerField_this.apply(document.getElementById(i), [ null, true ]);
}
if (!nonfirst && navigator.appName == 'Microsoft Internet Explorer')
{
// :-X reflow page to hide the gap between bugzilla-body and footer in IE8
document.body.className = document.body.className;
}
}
function setFieldValue(f, v)