fix toggle comments in handlebars mode

pull/85/head
nightwing 2015-04-30 03:55:19 +04:00
rodzic 9843b85fa8
commit b4c643c9ab
1 zmienionych plików z 1 dodań i 2 usunięć

Wyświetl plik

@ -13,7 +13,6 @@ var Mode = function() {
HtmlMode.call(this);
this.HighlightRules = HandlebarsHighlightRules;
this.$behaviour = new HtmlBehaviour();
this.foldingRules = new HtmlFoldMode();
};
@ -21,7 +20,7 @@ var Mode = function() {
oop.inherits(Mode, HtmlMode);
(function() {
this.blockComment = {start: "{!--", end: "--}"};
this.blockComment = {start: "{{!--", end: "--}}"};
this.$id = "ace/mode/handlebars";
}).call(Mode.prototype);