﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
16983	Maximize does not work s expected when classic and inline editors are mixed on the same page	Wiktor Walc		"Originally reported on Disqus, did not try to reproduce it. http://ckeditor.com/addon/maximize#comment-3256559859


> I was having everything in my page turned contenteditable when using maximize. Finaly I solved the issue.
> If you have a classic ckeditor and one or more inline editors in the same page, the maximize ""refreshCursor"" function only checks that the editor being maximized is not an inline one, but it does not check on the rest of CKEDITOR.instances, which are also refreshed..
The function's loop should be modified to:
{{{
for ( var i in all ) {
var one = all[ i ]; 
if ( !one.editable().isInline() && one.mode == 'wysiwyg' && !one.readOnly ) {
.........
}
}
]}}"	Bug	confirmed	Normal		General	4.0			
