Missing semicolons
[fnpeditor.git] / modules / sourceEditor / sourceEditor.js
index 431fcb8..1c18e75 100644 (file)
@@ -15,7 +15,7 @@ return function(sandbox) {
     \r
     editor.getSession().on('change', function() {\r
         sandbox.publish('xmlChanged');\r
-    })\r
+    });\r
     return {\r
         start: function() {\r
             sandbox.publish('ready');\r
@@ -25,13 +25,13 @@ return function(sandbox) {
         },\r
         setDocument: function(document) {\r
             editor.setValue(document);\r
-            editor.gotoLine(0)\r
+            editor.gotoLine(0);\r
             sandbox.publish('documentSet');\r
         },\r
         getDocument: function() {\r
             return editor.getValue();\r
         }\r
-    }\r
+    };\r
 };\r
 \r
 });
\ No newline at end of file