Changes between Version 1 and Version 2 of Ticket #5094, comment 6
- Timestamp:
- Oct 4, 2012, 11:56:55 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #5094, comment 6
v1 v2 7 7 8 8 >This can be done by inserting the following code: 9 10 >if ( elementDefinition.labelLayout != 'horizontal' ) 11 > new CKEDITOR.ui.dialog.vbox( dialog, [], inputHtmlList, html ); 12 >else 13 > new CKEDITOR.ui.dialog.hbox( dialog, [], inputHtmlList, html ); 9 {{{ 10 if ( elementDefinition.labelLayout != 'horizontal' ) 11 new CKEDITOR.ui.dialog.vbox( dialog, [], inputHtmlList, html ); 12 else 13 new CKEDITOR.ui.dialog.hbox( dialog, [], inputHtmlList, html ); 14 }}} 14 15 >instead of: 15 >new CKEDITOR.ui.dialog.hbox( dialog, [], inputHtmlList, html ); 16 {{{ 17 new CKEDITOR.ui.dialog.hbox( dialog, [], inputHtmlList, html ); 18 }}} 16 19 17 20 >In version 3.6.1 the code that has been changed is in line 479 of plugins.js under the dialogui folder.