fnp
/
fnpeditor.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
82e06a8
)
save button always enabled
author
Jan Szejko
<janek37@gmail.com>
Fri, 10 Mar 2017 14:22:17 +0000
(15:22 +0100)
committer
Jan Szejko
<janek37@gmail.com>
Fri, 10 Mar 2017 14:22:17 +0000
(15:22 +0100)
src/editor/modules/rng/rng.js
patch
|
blob
|
history
diff --git
a/src/editor/modules/rng/rng.js
b/src/editor/modules/rng/rng.js
index
67ad342
..
fc82fc8
100644
(file)
--- a/
src/editor/modules/rng/rng.js
+++ b/
src/editor/modules/rng/rng.js
@@
-67,7
+67,7
@@
return function(sandbox) {
sandbox.getModule('mainBar').setSummaryView(documentSummary.dom);
sandbox.getModule('mainBar').setCommandEnabled('drop-draft', usingDraft);
sandbox.getModule('mainBar').setSummaryView(documentSummary.dom);
sandbox.getModule('mainBar').setCommandEnabled('drop-draft', usingDraft);
- sandbox.getModule('mainBar').setCommandEnabled('save', usingDraft);
+
//
sandbox.getModule('mainBar').setCommandEnabled('save', usingDraft);
var toStart = ['sourceEditor', 'documentToolbar', 'mainBar', 'indicator', 'documentHistory', 'diffViewer', 'statusBar'];
var toStart = ['sourceEditor', 'documentToolbar', 'mainBar', 'indicator', 'documentHistory', 'diffViewer', 'statusBar'];
@@
-81,7
+81,7
@@
return function(sandbox) {
documentIsDirty = false;
wlxmlDocument.on('change', function() {
documentIsDirty = true;
documentIsDirty = false;
wlxmlDocument.on('change', function() {
documentIsDirty = true;
- sandbox.getModule('mainBar').setCommandEnabled('save', true);
+
//
sandbox.getModule('mainBar').setCommandEnabled('save', true);
});
wlxmlDocument.on('contentSet', function() {
documentIsDirty = true;
});
wlxmlDocument.on('contentSet', function() {
documentIsDirty = true;
@@
-90,14
+90,14
@@
return function(sandbox) {
draftDropped: function() {
documentSummary.setDraftField('-');
sandbox.getModule('mainBar').setCommandEnabled('drop-draft', false);
draftDropped: function() {
documentSummary.setDraftField('-');
sandbox.getModule('mainBar').setCommandEnabled('drop-draft', false);
- sandbox.getModule('mainBar').setCommandEnabled('save', false);
+
//
sandbox.getModule('mainBar').setCommandEnabled('save', false);
},
savingStarted: function(what) {
var msg = {
remote: gettext('Saving document'),
local: gettext('Saving local copy')
};
},
savingStarted: function(what) {
var msg = {
remote: gettext('Saving document'),
local: gettext('Saving local copy')
};
- sandbox.getModule('mainBar').setCommandEnabled('save', false);
+
//
sandbox.getModule('mainBar').setCommandEnabled('save', false);
sandbox.getModule('indicator').showMessage(msg[what] + '...');
},
savingEnded: function(status, what, data) {
sandbox.getModule('indicator').showMessage(msg[what] + '...');
},
savingEnded: function(status, what, data) {
@@
-114,19
+114,19
@@
return function(sandbox) {
if (what === 'remote') {
documentSummary.setDraftField('-');
sandbox.getModule('mainBar').setCommandEnabled('drop-draft', false);
if (what === 'remote') {
documentSummary.setDraftField('-');
sandbox.getModule('mainBar').setCommandEnabled('drop-draft', false);
- sandbox.getModule('mainBar').setCommandEnabled('save', false);
+
//
sandbox.getModule('mainBar').setCommandEnabled('save', false);
}
if (what === 'local') {
documentSummary.setDraftField(data.timestamp);
sandbox.getModule('mainBar').setCommandEnabled('drop-draft', true);
}
if (what === 'local') {
documentSummary.setDraftField(data.timestamp);
sandbox.getModule('mainBar').setCommandEnabled('drop-draft', true);
- sandbox.getModule('mainBar').setCommandEnabled('save', true);
+
//
sandbox.getModule('mainBar').setCommandEnabled('save', true);
}
} else {
sandbox.getModule('indicator').clearMessage({message: msg[status]});
}
},
restoringStarted: function(event) {
}
} else {
sandbox.getModule('indicator').clearMessage({message: msg[status]});
}
},
restoringStarted: function(event) {
- sandbox.getModule('mainBar').setCommandEnabled('save', false);
+
//
sandbox.getModule('mainBar').setCommandEnabled('save', false);
sandbox.getModule('indicator').showMessage(gettext('Restoring version ') + event.version + '...');
},
historyItemAdded: function(item) {
sandbox.getModule('indicator').showMessage(gettext('Restoring version ') + event.version + '...');
},
historyItemAdded: function(item) {