Ability to restore an old version from the debug app

pull/1/head
yflory 2019-11-22 17:58:21 +01:00
parent 2b4c3e9e90
commit a6589d0d06
1 changed files with 7 additions and 1 deletions

View File

@ -439,7 +439,12 @@ define([
console.log(doc);
};
config.onLocal = function () { };
var toRestore;
config.onLocal = function () {
if (!toRestore) { return; }
cpNfInner.chainpad.contentUpdate(toRestore);
};
config.onInit = function (info) {
Title = common.createTitle({});
@ -463,6 +468,7 @@ define([
onRemote: config.onRemote,
setHistory: setHistory,
applyVal: function (val) {
toRestore = val;
displayDoc(JSON.parse(val) || {});
},
$toolbar: $bar,