Ticket #5563: 5563_2.patch
File 5563_2.patch, 1.4 KB (added by , 13 years ago) |
---|
-
_source/plugins/wysiwygarea/plugin.js
427 427 }, 0 ); 428 428 } 429 429 430 // IE, Opera and Safari may not support it and throw431 // errors.432 try { domDocument.execCommand( 'enableObjectResizing', false, !editor.config.disableObjectResizing ) ; } catch(e) {}433 try { domDocument.execCommand( 'enableInlineTableEditing', false, !editor.config.disableNativeTableHandles ) ; } catch(e) {}434 435 430 domWindow = editor.window = new CKEDITOR.dom.window( domWindow ); 436 431 domDocument = editor.document = new CKEDITOR.dom.document( domDocument ); 437 432 … … 625 620 editor.fire( 'dataReady' ); 626 621 }, 0 ); 627 622 623 // IE, Opera and Safari may not support it and throw errors. 624 try { editor.document.$.execCommand( 'enableObjectResizing', false, !editor.config.disableObjectResizing ) ; } catch(e) {} 625 try { editor.document.$.execCommand( 'enableInlineTableEditing', false, !editor.config.disableNativeTableHandles ) ; } catch(e) {} 626 628 627 /* 629 628 * IE BUG: IE might have rendered the iframe with invisible contents. 630 629 * (#3623). Push some inconsequential CSS style changes to force IE to