Opened 13 years ago
Closed 13 years ago
#8509 closed Bug (fixed)
Table height gets copied from width when there is no advanced tab.
Reported by: | Jakub Ś | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | CKEditor 3.6.3 |
Component: | General | Version: | 3.6.1 |
Keywords: | Cc: |
Description
- Instert the following code into config.js
CKEDITOR.on( 'dialogDefinition', function( ev ) { var dialogName = ev.data.name; var dialogDefinition = ev.data.definition; if ( dialogName == 'link' || dialogName == 'table' || dialogName == 'tableProperties' || dialogName == 'image') { dialogDefinition.removeContents( 'advanced' ); } });
- Open ajax sample.
- Insert a table (Open a dialog and click ok).
- Right-click on a table and choose "table properties" option.
Result:
you can see 500px in 'Height' filed and when you click Ok the table is 500px heigh
Issue has been reproducible from CKEditor 3.6.1 rev [6979]
Change History (2)
comment:1 Changed 13 years ago by
Status: | new → confirmed |
---|
comment:2 Changed 13 years ago by
Milestone: | → CKEditor 3.6.3 |
---|---|
Resolution: | → fixed |
Status: | confirmed → closed |
It was just a minor mistake, I've fixed it in [7299]