diff options
| author | Ivan Kohler <ivan@freeside.biz> | 2013-03-19 17:44:04 -0700 |
|---|---|---|
| committer | Ivan Kohler <ivan@freeside.biz> | 2013-03-19 17:44:04 -0700 |
| commit | 295e80ba5a6da472edd7299098a336c4007d26be (patch) | |
| tree | 3408e64a249587e453a159322a0754bc31d4197f | |
| parent | 4ff563bad0dd485262af7994eca593d4320db054 (diff) | |
quick fix for IE10 issue w/fckeditor, RT#22014
| -rw-r--r-- | httemplate/elements/fckeditor/fckeditor.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/elements/fckeditor/fckeditor.js b/httemplate/elements/fckeditor/fckeditor.js index 8e0126bae..eb7d339af 100644 --- a/httemplate/elements/fckeditor/fckeditor.js +++ b/httemplate/elements/fckeditor/fckeditor.js @@ -304,7 +304,7 @@ function FCKeditor_IsCompatibleBrowser() // Internet Explorer 5.5+
if ( /*@cc_on!@*/false && sAgent.indexOf("mac") == -1 )
{
- var sBrowserVersion = navigator.appVersion.match(/MSIE (.\..)/)[1] ;
+ var sBrowserVersion = navigator.appVersion.match(/MSIE ([\d.]+)/)[1] ;
return ( sBrowserVersion >= 5.5 ) ;
}
|
