Ticket #3219: 3219.patch
File 3219.patch, 1.4 KB (added by , 14 years ago) |
---|
-
_source/plugins/dialog/plugin.js
507 507 else 508 508 return; 509 509 510 CKEDITOR.fire( 'beforeDialogOpen', definition ); 511 510 512 // First, set the dialog to an appropriate size. 511 513 this.resize( definition.minWidth, definition.minHeight ); 512 514 -
_source/plugins/floatpanel/plugin.js
62 62 iframe : iframe, 63 63 children : [] 64 64 } 65 66 // Hide panel 67 var hide = function( data ) 68 { 69 if ( this.element.isVisible() ) 70 this.hide(); 71 }; 72 CKEDITOR.on( "beforeDialogOpen" , hide, this ); 73 CKEDITOR.on( "beforePanelOpen" , hide, this ); 65 74 }, 66 75 67 76 proto : -
_source/plugins/panel/plugin.js
202 202 203 203 showBlock : function( name ) 204 204 { 205 CKEDITOR.fire( 'beforePanelOpen', name ); 206 205 207 var blocks = this._.blocks, 206 208 block = blocks[ name ], 207 209 current = this._.currentBlock;