-
7 Apr 2009 2:34 PM #1
[FIXED][3.0] BackgroundImageCache and IE8
[FIXED][3.0] BackgroundImageCache and IE8
Original:
Proposed:PHP Code:// remove css image flicker
if(isIE && !isIE7){
try{
document.execCommand("BackgroundImageCache", false, true);
}catch(e){}
}
PHP Code:// remove css image flicker
if(isIE && !isIE7 && !isIE8){
try{
document.execCommand("BackgroundImageCache", false, true);
}catch(e){}
}
-
7 Apr 2009 2:53 PM #2
Fixed.
Evan Trimboli
Sencha Developer
Twitter - @evantrimboli
Don't be afraid of the source code!
Thank you for reporting this bug. We will make it our priority to review this report.


Reply With Quote