Oh boy, today I got bitten by that bug again. If you fix things according to
the blog article… it will solve the problem for IE 10 but will still fail on IE
11. Therefore after tons of try&error, I came up with this patch for
magnolia-module-fckeditor/src/main/resources/mgnl-resources/fckeditor/fckeditor.js
(Magnolia 4.5.12).
--- HEAD
+++ Modified In Working Tree
@@ -304,8 +304,10 @@
// Internet Explorer 5.5+
if ( /*@cc_on!@*/false && sAgent.indexOf("mac") == -1 )
{
- var sBrowserVersion = navigator.appVersion.match(/MSIE
(.\..)/)[1] ;
- return ( sBrowserVersion >= 5.5 ) ;
+ var sBrowserVersion = navigator.appVersion.match(/MSIE
([\d.]+)/)[1] ;
+ return (sBrowserVersion >= 5.5);
+ } else if (Object.hasOwnProperty.call(window, "ActiveXObject") &&
!window.ActiveXObject) {
+ return true;
}
// Gecko (Opera 9 tries to behave like Gecko at this point).
I just added this patch to MAGNOLIA-5007 really hopping that this issue will be
out of the world before it celebrates its first birthday.
Grumpy, tired and IE-frustrated
-will
--
Context is everything:
http://forum.magnolia-cms.com/forum/thread.html?threadId=3e4bb4dd-2d31-4326-9240-783efbf08b72
----------------------------------------------------------------
For list details, see http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: <[email protected]>
----------------------------------------------------------------