mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-14 20:40:17 -05:00
Remove unused DocumentUpdater.js file
This commit is contained in:
parent
e1a7d4f24a
commit
a5d816272e
1 changed files with 0 additions and 181 deletions
|
@ -1,181 +0,0 @@
|
|||
(function(exports){
|
||||
Ace = require('aceserverside-sharelatex')
|
||||
Range = Ace.Range
|
||||
|
||||
//look at applyDeltas method
|
||||
exports.applyChange = function(aceDoc, change, callback) {
|
||||
var r = change.range;
|
||||
var range = new Range(r.start.row, r.start.column, r.end.row, r.end.column);
|
||||
if('insertText'==change.action){
|
||||
aceDoc.insert(change.range.start, change.text);
|
||||
}else if('insertLines'==change.action){
|
||||
aceDoc.insertLines(change.range.start.row, change.lines);
|
||||
}else if('removeText'==change.action){
|
||||
aceDoc.remove(range);
|
||||
}else if('removeLines'==change.action){
|
||||
aceDoc.removeLines(range.start.row, range.end.row-1);
|
||||
}
|
||||
|
||||
if(typeof callback === 'function'){
|
||||
callback(null, aceDoc);
|
||||
};
|
||||
}
|
||||
|
||||
})(typeof exports === 'undefined'? this['documentUpdater']={}: exports);
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in a new issue