better fix for IE8 page up down

This commit is contained in:
John McLear 2013-02-06 20:09:30 +00:00
parent 9fcabfa8ac
commit adaded343d
1 changed files with 4 additions and 2 deletions

View File

@ -156,12 +156,14 @@ function Ace2Inner(){
// Ugly hack for Firefox 18
// get the timeout and interval methods from the parent iframe
var FIREFOX = /Firefox/i.test(navigator.userAgent);
if(FIREFOX){
// This hack breaks IE8
try{
setTimeout = parent.setTimeout;
clearTimeout = parent.clearTimeout;
setInterval = parent.setInterval;
clearInterval = parent.clearInterval;
}catch(err){
// IE8 can panic here.
}
var textFace = 'monospace';