Index: trunk/extensions/VisualEditor/modules/ve/ce/ve.es.Surface.js |
— | — | @@ -46,6 +46,11 @@ |
47 | 47 | return _this.onMouseDown( e ); |
48 | 48 | } ); |
49 | 49 | |
| 50 | + // Prevent dragging text |
| 51 | + this.$.bind('dragover drop', function(e) { |
| 52 | + e.preventDefault(); |
| 53 | + }); |
| 54 | + |
50 | 55 | /* |
51 | 56 | this.model.getDocument().on( 'update', function() { |
52 | 57 | _this.emitUpdate( 25 ); |