Opened 12 years ago

Closed 12 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

  1. 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' );			
    		}
    	});
    
    
  2. Open ajax sample.
  3. Insert a table (Open a dialog and click ok).
  4. 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 12 years ago by Jakub Ś

Status: newconfirmed

comment:2 Changed 12 years ago by Alfonso Martínez de Lizarrondo

Milestone: CKEditor 3.6.3
Resolution: fixed
Status: confirmedclosed

It was just a minor mistake, I've fixed it in [7299]

Note: See TracTickets for help on using tickets.
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy