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

@ -9702,8 +9702,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

View file

@ -11,7 +11,7 @@
Ace
version 0.2.0
commit e0c8661bf5179c29f0299248c04e3dc313b2fd0e
commit 558206df09b3cb1ba10e07c2cc124d3f7a68ceed
-->

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

View file

@ -8423,8 +8423,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