stever
7 Apr 2009, 2:34 PM
Original:
// remove css image flicker
if(isIE && !isIE7){
try{
document.execCommand("BackgroundImageCache", false, true);
}catch(e){}
}
Proposed:
// remove css image flicker
if(isIE && !isIE7 && !isIE8){
try{
document.execCommand("BackgroundImageCache", false, true);
}catch(e){}
}
// remove css image flicker
if(isIE && !isIE7){
try{
document.execCommand("BackgroundImageCache", false, true);
}catch(e){}
}
Proposed:
// remove css image flicker
if(isIE && !isIE7 && !isIE8){
try{
document.execCommand("BackgroundImageCache", false, true);
}catch(e){}
}