editor.gotoLine(0);
documentEditedHere = false;
- sandbox.publish('documentSet');
documentIsDirty = false;
}
};
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]),
wlxmlDocument.on('change', function() {
documentIsDirty = true;
});
+ wlxmlDocument.on('contentSet', function() {
+ documentIsDirty = true;
+ });
+ },
+ changesCommited: function() {
+ return !documentEditedHere;
},
+ commitChanges: commitDocument,
getDocument: function() {
return editor.getValue();
}