updated build

This commit is contained in:
mikedeboer 2011-09-28 11:36:12 +02:00
commit bf045a3a38
7 changed files with 16 additions and 10 deletions

View file

@ -8431,8 +8431,10 @@ var EditSession = function(text, mode) {
doc.on("change", this.onChange.bind(this));
this.on("changeFold", this.onChangeFold.bind(this));
this.bgTokenizer.setDocument(this.getDocument());
this.bgTokenizer.start(0);
if (this.bgTokenizer) {
this.bgTokenizer.setDocument(this.getDocument());
this.bgTokenizer.start(0);
}
};
this.getDocument = function() {

File diff suppressed because one or more lines are too long