X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/8994dc92150011ef37004f0c432674fd249b88a1..7b4405539ac7c11a11b5259b4f968e1289f0b2a7:/modules/rng/rng.js?ds=inline diff --git a/modules/rng/rng.js b/modules/rng/rng.js index c83228b..7c39d0f 100644 --- a/modules/rng/rng.js +++ b/modules/rng/rng.js @@ -147,7 +147,7 @@ return function(sandbox) { }, restoringStarted: function(event) { sandbox.getModule('mainBar').setCommandEnabled('save', false); - sandbox.getModule('indicator').showMessage(gettext('Restoring version ' + event.version + '...')); + sandbox.getModule('indicator').showMessage(gettext('Restoring version ') + event.version + '...'); }, historyItemAdded: function(item) { sandbox.getModule('documentHistory').addHistory([item], {animate: true}); @@ -259,6 +259,9 @@ return function(sandbox) { } else { sandbox.getModule('documentCanvas').wrapSelectionWithNewNode(wlxmlTag, wlxmlClass); } + }, + command: function(cmd, meta) { + sandbox.getModule('documentCanvas').command(cmd, meta); } };