Changeset 6985
- Timestamp:
- 05/29/11 11:20:47 (2 years ago)
- Location:
- CKEditor/trunk/_source/plugins
- Files:
-
- 4 edited
-
colorbutton/plugin.js (modified) (1 diff)
-
floatpanel/plugin.js (modified) (2 diffs)
-
menu/plugin.js (modified) (2 diffs)
-
richcombo/plugin.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
CKEditor/trunk/_source/plugins/colorbutton/plugin.js
r6801 r6985 116 116 editor.focus(); 117 117 118 panel.hide(); 119 118 panel.hide( false ); 120 119 121 120 editor.fire( 'saveSnapshot' ); -
CKEditor/trunk/_source/plugins/floatpanel/plugin.js
r6962 r6985 325 325 }, 326 326 327 hide : function( )327 hide : function( returnFocus ) 328 328 { 329 329 if ( this.visible && ( !this.onHide || this.onHide.call( this ) !== true ) ) … … 337 337 338 338 // Return focus properly. (#6247) 339 var focusReturn = this._.returnFocus;339 var focusReturn = returnFocus !== false && this._.returnFocus; 340 340 if ( focusReturn ) 341 341 { -
CKEditor/trunk/_source/plugins/menu/plugin.js
r6971 r6985 115 115 onClick : function( item ) 116 116 { 117 this.hide( );117 this.hide( false ); 118 118 119 119 if ( item.onClick ) … … 355 355 }, 356 356 357 hide : function( )357 hide : function( returnFocus ) 358 358 { 359 359 this._.onHide && this._.onHide(); 360 this._.panel && this._.panel.hide( );360 this._.panel && this._.panel.hide( returnFocus ); 361 361 } 362 362 } -
CKEditor/trunk/_source/plugins/richcombo/plugin.js
r6971 r6985 277 277 me.setValue( '' ); 278 278 279 panel.hide( );279 panel.hide( false ); 280 280 }; 281 281
Note: See TracChangeset
for help on using the changeset viewer.
