Update oocell config

pull/1/head
yflory 7 years ago
parent acf09c807d
commit c34161a988

@ -7,14 +7,27 @@ config = {
},
"documentType": "spreadsheet",
"editorConfig": {
"user": {
"id": "c0c3bf82-20d7-4663-bf6d-7fa39c598b1d",
"name": "John Smith"
}
customization: {
chat: false,
logo: {
url: "/bounce/#" + encodeURIComponent('https://www.onlyoffice.com')
}
},
"user": {
"id": "c0c3bf82-20d7-4663-bf6d-7fa39c598b1d",
"name": "John Smith"
}
},
"events": {
"onDocumentStateChange": function(evt) { console.log("in change"); },
"onReady": function(evt) { console.log("in onReady"); }
"onDocumentStateChange": function (evt) {
if (evt.data) {
console.log('in change (local)');
return;
}
console.log("in change (remote)");
},
"onReady": function(evt) { console.log("in onReady"); },
"onAppReady": function(evt) { console.log("in onAppReady"); },
}
};
window.onbeforeunload = null;

Loading…
Cancel
Save