Changeset 4941
- Timestamp:
- 01/18/10 13:46:38 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
CKEditor/branches/features/aria/_source/plugins/floatpanel/plugin.js
r4938 r4941 238 238 } ); 239 239 240 block.element.focus(); 240 // Give focus to the panel block (to help speak out the widget). 241 setTimeout( function() { block.element.focus(); }, 0 ); 241 242 } , this ); 242 243 243 244 panel.isLoaded ? panelLoad() : panel.onLoad = panelLoad; 244 245 245 // We need this get fired manually because of unfired focus() function. 246 this.allowBlur( true ); 246 // Set the panel frame focus, so the blur event gets fired. 247 CKEDITOR.tools.setTimeout( function() 248 { 249 // We need this get fired manually because of unfired focus() function. 250 this.allowBlur( true ); 251 }, 0, this); 247 252 }, 0, this); 248 253 this.visible = 1;
Note: See TracChangeset
for help on using the changeset viewer.
