From 739e86cde7eacd303246afe5a6d80ab49f7d5375 Mon Sep 17 00:00:00 2001 From: rmsmith Date: Sat, 21 Jun 2014 19:15:52 +0300 Subject: [PATCH] mode/applescript : set the `$id` to the correct value This brings the new applescript mode into alignment with the other modes per #1778 --- lib/ace/mode/applescript.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/ace/mode/applescript.js b/lib/ace/mode/applescript.js index 121b73eb..81bc3533 100644 --- a/lib/ace/mode/applescript.js +++ b/lib/ace/mode/applescript.js @@ -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);