Hello,
I'm trying to build fake objects which aren't resizable (i.e. no resize handlers on them). There is a parameter isResizable in the fake object building functions, but:
On chrome the object is never resizable
On firefox the object is always resizable
No matter what values I'm inserting (true, false, or omitting the value).
I'm using as example the flash plugin code, and I'm having the same issue with this plugin (no resize on chrome, always resize in firefox, even if I modify plugin's code).
I can't find in the source code how the resize is handled... The parameter _cke_resizable is set, but I can't find where it is used.
I suspect that the resize is something related to images themselves (as I can't resize images in chrome, but I can in firefox) and the resizable parameter in the fake object is related only with the fact that image's dimension can or can't be transferred to the real element.
Any help is appreciated. Thanks,
~Aki
I'm trying to build fake objects which aren't resizable (i.e. no resize handlers on them). There is a parameter isResizable in the fake object building functions, but:
On chrome the object is never resizable
On firefox the object is always resizable
No matter what values I'm inserting (true, false, or omitting the value).
I'm using as example the flash plugin code, and I'm having the same issue with this plugin (no resize on chrome, always resize in firefox, even if I modify plugin's code).
I can't find in the source code how the resize is handled... The parameter _cke_resizable is set, but I can't find where it is used.
I suspect that the resize is something related to images themselves (as I can't resize images in chrome, but I can in firefox) and the resizable parameter in the fake object is related only with the fact that image's dimension can or can't be transferred to the real element.
Any help is appreciated. Thanks,
~Aki

Re: Fake Object Resize
Re: Fake Object Resize
https://bugzilla.mozilla.org/show_bug.cgi?id=227495
http://dev.w3.org/2006/webapi/DOM-Level ... ype-resize
http://dev.ckeditor.com/ticket/4208
//_cke_resizable has no effect... editor.document.getBody().on( CKEDITOR.env.ie ? 'resizestart' : 'resize', function( evt ) { if ( editor.getSelection().getSelectedElement().attributes._cke_resizable == false) evt.data.preventDefault(); });Re: Fake Object Resize
Right now it's a low-priority issues so I'm not putting much time in it, I'll try to solve in future.
Thanks anyway
~Aki