﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
12163	Maximize (and resize) plugin and shared spaces incompatibility	Wiktor Walc	Artur Delura	"It looks like the maximize plugin correctly turned off itself when inline mode is detected in `init()` callback:

{{{
// Maximize plugin isn't available in inline mode yet.
if ( editor.elementMode == CKEDITOR.ELEMENT_MODE_INLINE )
	return;
}}}

Similarly, Maximize button is disabled on iOS:

{{{
// Disabled on iOS (#8307).
modes: { wysiwyg: !CKEDITOR.env.iOS, source: !CKEDITOR.env.iOS },
}}}

We know that maximize plugin is useless when shared spaces are used, but instead of switching it off automatically just like with two previous cases, we rely on users knowledge:

{{{
removePlugins : 'maximize'
}}}

Perhaps we could do this automatically for maximize and resize plugins?

"	Bug	closed	Normal		General	4.0	invalid		
