↧
From: | MB |
To: | Harvey Mushman |
http://dev.ckeditor.com/changeset/7666
and documents the following original and change code:
var sBrowserVersion = navigator.appVersion.match(/MSIE (.\..)/)[1] ; replaced by var sBrowserVersion = navigator.appVersion.match(/MSIE ([\d.]+)/)[1] ;
After testing, I found the error to have gone away.
--hm
I'm getting an error in fckeditor.js function FCKeditor_IsCompatibleBrowser and because I'm using IE 10, I decided to change the compatibility to 9 and see if the problem went away. It did, so I looked further at the script code and found what looks like an error is in the match statement below.
var sBrowserVersion = navigator.appVersion.match(/MSIE (.\..)/)[1] ;
The error I see talks about "Unable to get property '1' of undefined or null reference". I assume this is because the first value (the major version number) is now two digits "10.0"
Is anybody having this problem or has everyone dropped this control or upgraded to a new version?
Thanks in advance for any suggestions.
--hm