Index: trunk/extensions/VisualEditor/modules/ve/ce/ve.ce.Surface.js |
— | — | @@ -80,6 +80,13 @@ |
81 | 81 | 'compositionStart': null, |
82 | 82 | 'compositionEnd': null |
83 | 83 | }; |
| 84 | + |
| 85 | + //Prevent native contentedtiable tools |
| 86 | + try { |
| 87 | + document.execCommand("enableInlineTableEditing", false, false); |
| 88 | + document.execCommand("enableObjectResizing", false, false); |
| 89 | + } catch(e) { |
| 90 | + } |
84 | 91 | |
85 | 92 | this.model.on( 'select', function( selection ) { |
86 | 93 | // Keep a copy of the current selection on hand |