X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/61637cd5c0cb56fe9cbadd1066ba37d38604249e..4a10da821d96b8e462cc9db5e74e2507445eee76:/modules/data/data.js?ds=sidebyside diff --git a/modules/data/data.js b/modules/data/data.js index e2cdbb1..51a4398 100644 --- a/modules/data/data.js +++ b/modules/data/data.js @@ -6,6 +6,7 @@ return function(sandbox) { var doc = sandbox.getBootstrappedData().document; var document_id = sandbox.getBootstrappedData().document_id; + var document_version = sandbox.getBootstrappedData().version; var history = sandbox.getBootstrappedData().history; @@ -52,7 +53,7 @@ return function(sandbox) { sandbox.publish('historyItemAdded', data.slice(-1)[0]); }, }); - } + }; return { start: function() { @@ -99,7 +100,7 @@ return function(sandbox) { url: '/' + gettext('editor') + '/' + document_id + '/diff', data: {from: ver1, to: ver2}, success: function(data) { - sandbox.publish('diffFetched', {table: data, ver1: ver1, ver2: ver2}) + sandbox.publish('diffFetched', {table: data, ver1: ver1, ver2: ver2}); }, }); }, @@ -113,16 +114,20 @@ return function(sandbox) { data: JSON.stringify(options), success: function(data) { doc = data.document; + document_version = data.version; reloadHistory(); - sandbox.publish('documentReverted', {document: data.document, version: data.version}); + sandbox.publish('documentReverted', data); }, }); } }, getDocumentId: function() { return document_id; + }, + getDocumentVersion: function() { + return document_version; } - } + }; }; }); \ No newline at end of file