--
Ticket URL: <http://dev.ckeditor.com/ticket/10450>
CKEditor <http://ckeditor.com/>
The text editor for the Internet
* status: new => closed
* resolution: => invalid
Comment:
I have just checked default editor in basic version and didn't get any
problems with it in IE10. All three versions standard, basic and full work
in IE10 without problems.
1. If you are using some custom plugins or have modified core code of
editor this might be source of your problem
2. You can check hat errors you are getting in IE10 console. They should
give you idea what have you done wrong.
I'm closing this ticket as invalid. If you don't agree because you have
for example downloaded fresh CKEditorl, didn't modify it (and only then),
put it on server and it doesn't work then please explain in detail what
version (basic, standard, full or perhaps non-standard) have you
downloaded, how have you configured CKEditor, what you get when editor
loads (JS or HTTP errors) etc.
--
Ticket URL: <http://dev.ckeditor.com/ticket/10450#comment:1>
* keywords: => IE10
* version: 4.1.1 => 4.1
Comment:
Problem can be reproduced in CKE 4.1 in **IE10 quirks mode only** (IE5
quirks works fine).
Please used attached sample which contains proper settings that will cause
IE10 QM.
--
Ticket URL: <http://dev.ckeditor.com/ticket/10450#comment:1>
* status: new => confirmed
--
Ticket URL: <http://dev.ckeditor.com/ticket/10450#comment:2>
Comment (by imc_ruf):
You can reproduce this bug even with the latest ckeditor version 4.1.2.
Just get one of the sample files (e.g. samples/replacebycode.html) and
remove the first line, containing the doctype definition. Then open the
file in IE10.
The problem here is, that IE10 introduced a second Quirks mode similar to
other browser’s Quirks mode, while keeping the old Quirks mode as IE5
Quirks mode. There seems to be no way to discriminate one Quirks mode
against the other in Javascript. So it’s only possible to make ckeditor
working with ''one'' of the Quirks modes. Currently only the old IE5
Quirks mode is working.
To make ckeditor work in IE10 Quirks mode, open ckeditor.js, search for
the first “a.ie9Compat” and replace it with
“a.quirks=a.quirks&&e<10;a.ie9Compat”. Note that this change should
''not'' be used in IE5 Quirks mode.
However, the best way would be to use Standards mode by defining <!DOCTYPE
html> whenever possible.
--
Ticket URL: <http://dev.ckeditor.com/ticket/10450#comment:3>
Comment (by fredck):
May be related to #9654, so let's review this once that one gets closed.
--
Ticket URL: <http://dev.ckeditor.com/ticket/10450#comment:4>
* status: confirmed => closed
* resolution: => fixed
Comment:
This issue no longer occurs in latest CKEditor 4.2.1.
--
Ticket URL: <http://dev.ckeditor.com/ticket/10450#comment:5>