summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
e68778f)
This fixes source editor not reloading its content after revert.
wlxmlDocument.on('change', function() {
documentIsDirty = true;
});
wlxmlDocument.on('change', function() {
documentIsDirty = true;
});
+ wlxmlDocument.on('contentSet', function() {
+ documentIsDirty = true;
+ });
},
getDocument: function() {
return editor.getValue();
},
getDocument: function() {
return editor.getValue();