MDL-44767 atto_editor: Browser hangs when making a selection

This commit is contained in:
Frederic Massart 2014-03-25 15:32:47 +08:00 committed by Marina Glancy
parent c531e2e632
commit 7887b47524
4 changed files with 4 additions and 4 deletions

View file

@ -1027,7 +1027,7 @@ EditorSelection.prototype = {
var editor = this.editor, var editor = this.editor,
stopFn = function(node) { stopFn = function(node) {
editor.contains(node); return editor.contains(node);
}; };
selectednodes.each(function(node){ selectednodes.each(function(node){

File diff suppressed because one or more lines are too long

View file

@ -1023,7 +1023,7 @@ EditorSelection.prototype = {
var editor = this.editor, var editor = this.editor,
stopFn = function(node) { stopFn = function(node) {
editor.contains(node); return editor.contains(node);
}; };
selectednodes.each(function(node){ selectednodes.each(function(node){

View file

@ -204,7 +204,7 @@ EditorSelection.prototype = {
var editor = this.editor, var editor = this.editor,
stopFn = function(node) { stopFn = function(node) {
editor.contains(node); return editor.contains(node);
}; };
selectednodes.each(function(node){ selectednodes.each(function(node){