X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/62785e07d962daae8e0a84283ac5da8e2a019595..2a0f7de048f49f0087caae5962f124dbbb06d69e:/src/editor/modules/sourceEditor/sourceEditor.js diff --git a/src/editor/modules/sourceEditor/sourceEditor.js b/src/editor/modules/sourceEditor/sourceEditor.js index 8f0c833..dadc08e 100644 --- a/src/editor/modules/sourceEditor/sourceEditor.js +++ b/src/editor/modules/sourceEditor/sourceEditor.js @@ -1,4 +1,4 @@ -define(['libs/jquery', 'libs/text!./template.html'], function($, template) { +define(['libs/jquery', 'libs/ace/ace', 'libs/text!./template.html'], function($, ace, template) { 'use strict'; @@ -15,7 +15,6 @@ return function(sandbox) { editor.gotoLine(0); documentEditedHere = false; - sandbox.publish('documentSet'); documentIsDirty = false; } }; @@ -30,11 +29,9 @@ return function(sandbox) { documentEditedHere = false; wlxmlDocument.loadXML(editor.getValue()); }; - - /* globals ace */ + var editor = ace.edit(view.find('#rng-sourceEditor-editor')[0]), session = editor.getSession(); - editor.setTheme('ace/theme/chrome'); session.setMode('ace/mode/xml'); session.setUseWrapMode(true);