mode/applescript : set the $id to the correct value

This brings the new applescript mode into alignment with the other modes
per #1778
This commit is contained in:
rmsmith 2014-06-21 19:15:52 +03:00
commit 739e86cde7

View file

@ -47,6 +47,7 @@ oop.inherits(Mode, TextMode);
(function() {
this.lineCommentStart = "--";
this.blockComment = {start: "(*", end: "*)"};
this.$id = "ace/mode/applescript";
// Extra logic goes here.
}).call(Mode.prototype);