This commit is contained in:
Fabian Jakobs 2011-06-08 13:01:26 +00:00
commit f032c68a79

View file

@ -49,7 +49,6 @@ var Mode = function() {
this.$tokenizer = new Tokenizer(this.highlighter.getRules());
this.$behaviour = new XmlBehaviour();
this.$embeds = this.highlighter.getEmbeds();
this.createModeDelegates({
"js-": JavaScriptMode
@ -65,7 +64,7 @@ oop.inherits(Mode, XmlMode);
};
this.getNextLineIndent = function(state, line, tab) {
return self.$getIndent(line);
return this.$getIndent(line);
};
this.checkOutdent = function(state, line, input) {