r113681 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r113680‎ | r113681 | r113682 >
Date:23:06, 12 March 2012
Author:christian
Status:deferred
Tags:
Comment:
preventing native contenteditable resizing tools
Modified paths:
  • /trunk/extensions/VisualEditor/modules/ve/ce/ve.ce.Surface.js (modified) (history)

Diff [purge]

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

Status & tagging log