fnp
/
fnpeditor.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
fix weird selection after delete
[fnpeditor.git]
/
src
/
editor
/
modules
/
sourceEditor
/
sourceEditor.js
diff --git
a/src/editor/modules/sourceEditor/sourceEditor.js
b/src/editor/modules/sourceEditor/sourceEditor.js
index
c805b1b
..
dadc08e
100644
(file)
--- 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';
'use strict';
@@
-15,29
+15,26
@@
return function(sandbox) {
editor.gotoLine(0);
documentEditedHere = false;
editor.gotoLine(0);
documentEditedHere = false;
- sandbox.publish('documentSet');
documentIsDirty = false;
}
};
view.onHide = function() {
if(documentEditedHere) {
documentIsDirty = false;
}
};
view.onHide = function() {
if(documentEditedHere) {
- documentEditedHere = false;
- wlxmlDocument.loadXML(editor.getValue());
+ commitDocument();
}
};
}
};
-
- /* globals ace */
+
+ var commitDocument = function() {
+ documentEditedHere = false;
+ wlxmlDocument.loadXML(editor.getValue());
+ };
+
var editor = ace.edit(view.find('#rng-sourceEditor-editor')[0]),
session = editor.getSession();
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);
session.setMode('ace/mode/xml');
session.setUseWrapMode(true);
- $('textarea', view).on('keyup', function() {
- documentEditedHere = true;
- });
-
editor.getSession().on('change', function() {
documentEditedHere = true;
});
editor.getSession().on('change', function() {
documentEditedHere = true;
});
@@
-53,7
+50,14
@@
return function(sandbox) {
wlxmlDocument.on('change', function() {
documentIsDirty = true;
});
wlxmlDocument.on('change', function() {
documentIsDirty = true;
});
+ wlxmlDocument.on('contentSet', function() {
+ documentIsDirty = true;
+ });
+ },
+ changesCommited: function() {
+ return !documentEditedHere;
},
},
+ commitChanges: commitDocument,
getDocument: function() {
return editor.getValue();
}
getDocument: function() {
return editor.getValue();
}