From 28be3e9f701ed9d9d16d211838c736da696dcef6 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Mon, 19 Sep 2016 15:58:12 +0300 Subject: [PATCH] [DE] Restore revision from changes. --- apps/common/Gateway.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/apps/common/Gateway.js b/apps/common/Gateway.js index b8dcd4305..f47d839cf 100644 --- a/apps/common/Gateway.js +++ b/apps/common/Gateway.js @@ -162,11 +162,13 @@ Common.Gateway = new(function() { }); }, - requestRestore: function(revision, url) { + requestRestore: function(version, url) { _postMessage({ event: 'onRequestRestore', - data: revision, - url: url + data: { + version: version, + url: url + } }); },