Hi all,
I'm testing an app on the current beta of IE11 in Windows 8.1, and I've run into a problem with opening the insert-image dialog.
I get an exception in element.js:
/**
* Returns the inner document of this `<iframe>` element.
*
* @returns {CKEDITOR.dom.document} The inner document.
*/
getFrameDocument: function() {
var $ = this.$;
try {
// In IE, with custom document.domain, it may happen that
// the iframe is not yet available, resulting in "Access
// Denied" for the following property access.
$.contentWindow.document;
} catch ( e ) {
// Trick to solve this issue, forcing the iframe to get ready
// by simply setting its "src" property.
$.src = $.src;
}
return $ && new CKEDITOR.dom.document( $.contentWindow.document );
},
By the time it gets to the reutrn line, $.contentWindow is still giving 'Access Denied', despite the work-around commented in above.
Anyone got any thoughts on this?
Thanks,
Matthew
EDITED TO ADD: BTW, this is the only problem I've had on IE 11! Everything else I've tried so far seems to be working great.
Hmm, might related this issue
Hmm, might related this issue.
Customer and Community Manager, CKSource
Follow us on: Facebook, Twitter, LinkedIn
If you think you found a bug in CKEditor, read this!
Ok, new umbrella ticket
Ok, new umbrella ticket created for IE11. You can post your findings and solutions there.
Customer and Community Manager, CKSource
Follow us on: Facebook, Twitter, LinkedIn
If you think you found a bug in CKEditor, read this!
Does this error occur on
Does this error occur on Exporer alone or did you try any other browser? Try another browser and see if you still get an error. This may be some form of incompatibily caused by the browser you are using. Is your issue related to this one I found here http://www.techyv.com/questions/getting-runtime-error-internet-explorer.
Meanwhile you can try these options and respond with more information if you still have a problem.
Paste From word not working on IE 11
I am using Ck editor 4.2.2 version and Now added Paste from word plugin in editor it work fine with FireFox and chrome but it is not working with IE 11.
Behavior Of Plugin In Firefox and chrome :
While click on paste from word plugin in editor one dialog popup comes and you can paste content in it.
On IE 11 browser :
No dialog comes while click on paste from word plugin in editor and it directly paste lastly copied content from clipboard into editor.
I tried it with demo editor provided by ck editor at http://ckeditor.com/demo
Same thing is happen over their.
Any one know solution for it?
Thanks.