// IE10
in fckeditor.js >: FCKeditor_IsCompatibleBrowser
find this:
var sBrowserVersion = navigator.appVersion.match(/MSIE (.\..)/)[1] ;
and replace with:
var sBrowserVersion = navigator.appVersion.match(/MSIE ([\d.]+)/)[1] ;
in fckeditorcode_ie.js
to find
e.scopeName!='HTML'
and change if condition:
if(FCKBrowserInfo.IsIE&& e.scopeName && e.scopeName!='HTML')
to find
D.parentElement().document!=B
and change if:
if(D.parentElement().document && D.parentElement().document!=B)
to find
B.open("GET",A,false);
and add this:
B.open("GET",A,false); try { B.responseType = "msxml-document"; } catch(e) {}; B.send(null);
meexplorer
source share