Some code improvements suggested by linter
[fnpeditor.git] / modules / sourceEditor / sourceEditor.js
index 248c02d..1c18e75 100644 (file)
@@ -1,20 +1,21 @@
 define(function() {\r
 \r
+'use strict';\r
+\r
 return function(sandbox) {\r
 \r
     var view = $(sandbox.getTemplate('main')());\r
-    var isDirty = false;\r
     \r
     var editor = ace.edit(view.find('#rng-sourceEditor-editor')[0]);\r
     editor.setTheme("ace/theme/chrome");\r
     editor.getSession().setMode("ace/mode/xml");\r
     $('textarea', view).on('keyup', function() {\r
-        isDirty = true;\r
+        sandbox.publish('xmlChanged');\r
     });\r
     \r
     editor.getSession().on('change', function() {\r
-        isDirty = true;\r
-    })\r
+        sandbox.publish('xmlChanged');\r
+    });\r
     return {\r
         start: function() {\r
             sandbox.publish('ready');\r
@@ -24,20 +25,13 @@ return function(sandbox) {
         },\r
         setDocument: function(document) {\r
             editor.setValue(document);\r
-            editor.gotoLine(0)\r
-            isDirty = false;\r
+            editor.gotoLine(0);\r
+            sandbox.publish('documentSet');\r
         },\r
         getDocument: function() {\r
             return editor.getValue();\r
-        },\r
-        isDirty: function() {\r
-            return isDirty;\r
-        },\r
-        setDirty: function(dirty) {\r
-            isDirty = dirty;\r
         }\r
-    \r
-    }\r
+    };\r
 };\r
 \r
 });
\ No newline at end of file