Ticket #7915: 7915_6.patch
File 7915_6.patch, 865 bytes (added by , 12 years ago) |
---|
-
_source/plugins/dialog/plugin.js
862 862 for ( var i in this._.contents ) 863 863 { 864 864 for ( var j in this._.contents[i] ) 865 fn (this._.contents[i][j] );865 fn.call( this, this._.contents[i][j] ); 866 866 } 867 867 return this; 868 868 }, … … 913 913 var args = arguments; 914 914 this.foreach( function( widget ) 915 915 { 916 // Make sure IE triggers "change" event on last focused input before closing the dialog. (#7915) 917 if ( CKEDITOR.env.ie && this._.currentFocusIndex == widget.focusIndex ) 918 widget.fire( 'change', { value : widget.getValue() } ); 919 916 920 if ( widget.commit ) 917 921 widget.commit.apply( widget, args ); 918 922 });