1) window.CodeMirror is always undefined in PopUp mode.
>>> console.debug(window.CodeMirror)
debug: undefined
>>> console.debug(window.frames[0].CodeMirror)
CodeMirror(place, options)
Problem in.
Same thing with ImageResize, and this bug will affect all plugins. doc not root document (frames[0]) for PopUp mode, and root in stanalone mode.
2)
not work with XML,PHP and other capitalized file extensions
temporary removes this problem
>>> console.debug(window.CodeMirror)
debug: undefined
>>> console.debug(window.frames[0].CodeMirror)
CodeMirror(place, options)
Problem in.
var dialog = this;
doc = dialog.getElement().getDocument();
Same thing with ImageResize, and this bug will affect all plugins. doc not root document (frames[0]) for PopUp mode, and root in stanalone mode.
2)
parserfile: codeMirrorParsers[ file.ext ], stylesheet: codeMirrorCss[ file.ext ],
not work with XML,PHP and other capitalized file extensions
parserfile: codeMirrorParsers[ file.ext .toLowerCase()], stylesheet: codeMirrorCss[ file.ext.toLowerCase() ],
temporary removes this problem
Re: plugin[fileeditor] bugs
Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Re: plugin[fileeditor] bugs
Re: plugin[fileeditor] bugs
. All popup issues should be gone now.
Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+