Ticket #3600: 3600.patch
File 3600.patch, 911 bytes (added by , 14 years ago) |
---|
-
_source/plugins/dialog/plugin.js
609 609 // Reset the hasFocus state. 610 610 this._.hasFocus = false; 611 611 612 // Save the initial values of the dialog.613 this.foreach( function( contentObj ) { contentObj.setInitValue && contentObj.setInitValue(); } );614 615 612 // Rearrange the dialog to the middle of the window. 616 613 CKEDITOR.tools.setTimeout( function() 617 614 { … … 625 622 // Execute onLoad for the first show. 626 623 this.fireOnce( 'load', {} ); 627 624 this.fire( 'show', {} ); 625 626 // Save the initial values of the dialog. 627 this.foreach( function( contentObj ) { contentObj.setInitValue && contentObj.setInitValue(); } ); 628 628 629 }, 629 630 100, this ); 630 631 },