Index: trunk/extensions/VisualEditor/modules/es/models/es.SurfaceModel.js |
— | — | @@ -62,16 +62,16 @@ |
63 | 63 | */ |
64 | 64 | es.SurfaceModel.prototype.select = function( selection, isManual ) { |
65 | 65 | selection.normalize(); |
66 | | - if ( |
| 66 | + /*if ( |
67 | 67 | ( ! this.selection ) || ( ! this.selection.equals( selection ) ) |
68 | | - ) { |
| 68 | + ) {*/ |
69 | 69 | if ( isManual ) { |
70 | 70 | this.breakpoint(); |
71 | 71 | } |
72 | 72 | // check if the last thing is a selection, if so, swap it. |
73 | 73 | this.selection = selection; |
74 | 74 | this.emit( 'select', this.selection.clone() ); |
75 | | - } |
| 75 | + //} |
76 | 76 | }; |
77 | 77 | |
78 | 78 | /** |