Index: trunk/extensions/VisualEditor/modules/es/models/es.DocumentModel.js |
— | — | @@ -638,7 +638,7 @@ |
639 | 639 | * @param {Integer} Offset a given distance from the given offset |
640 | 640 | */ |
641 | 641 | es.DocumentModel.prototype.getRelativeContentOffset = function( offset, distance ) { |
642 | | - console.log(offset); |
| 642 | + //console.log(offset); |
643 | 643 | if ( distance === 0 ) { |
644 | 644 | return offset; |
645 | 645 | } |
Index: trunk/extensions/VisualEditor/modules/es/views/es.SurfaceView.js |
— | — | @@ -144,7 +144,7 @@ |
145 | 145 | |
146 | 146 | var offset = this.documentView.getOffsetFromEvent( e ); |
147 | 147 | |
148 | | - console.log('onMouseDown; offset: ' + offset); |
| 148 | + //console.log('onMouseDown; offset: ' + offset); |
149 | 149 | |
150 | 150 | if ( e.originalEvent.detail === 1 ) { // single click |
151 | 151 | this.mouse.selectingMode = 1; // used in mouseMove handler |
— | — | @@ -458,7 +458,7 @@ |
459 | 459 | * @param {String} unit char | word | line | node | page |
460 | 460 | */ |
461 | 461 | es.SurfaceView.prototype.moveCursor = function( direction, unit ) { |
462 | | - console.log('moveCursor; direction: ' + direction + ', unit: ' + unit); |
| 462 | + //console.log('moveCursor; direction: ' + direction + ', unit: ' + unit); |
463 | 463 | |
464 | 464 | if ( direction !== 'up' && direction !== 'down' ) { |
465 | 465 | this.cursor.initialLeft = null; |