Opened 14 years ago
Last modified 12 years ago
#7940 review Bug
Fake object can be styled as images
Reported by: | Sa'ar Zac Elias | Owned by: | Jakub Ś |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | General | Version: | 3.0 |
Keywords: | Cc: |
Description (last modified by )
- Insert a flash object, with some height and width.
- Click on the image.
- Open the styles combo and see that image styling options are available.
- Click on "image on the right". See that the image's dimensions get reset.
Attachments (1)
Change History (6)
comment:1 Changed 14 years ago by
Description: | modified (diff) |
---|
comment:2 Changed 14 years ago by
Status: | new → confirmed |
---|---|
Version: | → 3.0 |
comment:3 Changed 12 years ago by
Fix to this issue might be:
In CKEditor GIT reporsitory (https://github.com/ckeditor/ckeditor-dev) go to:
ckeditor4\plugins\stylescombo\plugin.js
Line 155
change
if ( !counter[ CKEDITOR.STYLE_OBJECT ] ) this.hideGroup( lang[ 'panelTitle' + String( CKEDITOR.STYLE_OBJECT ) ] );
to
if ( !counter[ CKEDITOR.STYLE_OBJECT ] || ( element && element.data( 'cke-realelement' ) ) ) this.hideGroup( lang[ 'panelTitle' + String( CKEDITOR.STYLE_OBJECT ) ] );
comment:4 Changed 12 years ago by
Owner: | set to Jakub Ś |
---|---|
Status: | confirmed → assigned |
Changed 12 years ago by
Attachment: | 7940.patch added |
---|
comment:5 Changed 12 years ago by
Status: | assigned → review |
---|
The size stays the same but the image (placeholder) representing flash gets resized.
This has been true from version 3.0;
NOTE: I you want to paste ready flash in source mode then the image representing it will be visible in WYSIWYG only from version 3.5.3.