refactor selection support into a separate class
Merge branch 'master' into HEAD Conflicts: src/Editor.js src/KeyBinding.js src/Selection.js
This commit is contained in:
parent
b7e69d5da5
commit
7529f90080
12 changed files with 887 additions and 680 deletions
|
|
@ -53,8 +53,7 @@ ace.TextLayer.prototype.updateLines = function(layerConfig, firstRow, lastRow) {
|
|||
|
||||
var lineElement = lineElements[i - layerConfig.firstRow];
|
||||
lineElement.innerHTML = html.join("");
|
||||
}
|
||||
;
|
||||
};
|
||||
};
|
||||
|
||||
ace.TextLayer.prototype.update = function(config) {
|
||||
|
|
@ -84,6 +83,5 @@ ace.TextLayer.prototype.renderLine = function(stringBuilder, row) {
|
|||
else {
|
||||
stringBuilder.push(output);
|
||||
}
|
||||
}
|
||||
;
|
||||
};
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue