fnp
/
fnpeditor.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
editor: Some addtional logging
[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
1930939
..
8f0c833
100644
(file)
--- a/
src/editor/modules/sourceEditor/sourceEditor.js
+++ b/
src/editor/modules/sourceEditor/sourceEditor.js
@@
-22,10
+22,14
@@
return function(sandbox) {
view.onHide = function() {
if(documentEditedHere) {
view.onHide = function() {
if(documentEditedHere) {
- documentEditedHere = false;
- wlxmlDocument.loadXML(editor.getValue());
+ commitDocument();
}
};
}
};
+
+ var commitDocument = function() {
+ documentEditedHere = false;
+ wlxmlDocument.loadXML(editor.getValue());
+ };
/* globals ace */
var editor = ace.edit(view.find('#rng-sourceEditor-editor')[0]),
/* globals ace */
var editor = ace.edit(view.find('#rng-sourceEditor-editor')[0]),
@@
-53,6
+57,10
@@
return function(sandbox) {
documentIsDirty = true;
});
},
documentIsDirty = true;
});
},
+ changesCommited: function() {
+ return !documentEditedHere;
+ },
+ commitChanges: commitDocument,
getDocument: function() {
return editor.getValue();
}
getDocument: function() {
return editor.getValue();
}