lint compliance

This commit is contained in:
yflory 2025-02-26 18:21:20 +01:00
parent c1eb48c8b8
commit 5bcc0ceb53
2 changed files with 3 additions and 3 deletions

View File

@ -1702,7 +1702,7 @@ define([
|| Messages.anonymous;
let integrationConfig = privateData?.integrationConfig?._;
let ec = integrationConfig?.editorConfig;
//let ec = integrationConfig?.editorConfig;
let dc = integrationConfig?.document;
// Config
@ -3444,7 +3444,7 @@ Uncaught TypeError: Cannot read property 'calculatedType' of null
var wasMigrating = content.migration;
var myLocks = getUserLock(getId(), true);
var integrationSave = content.integrationSave;
//var integrationSave = content.integrationSave;
content = json.content;

View File

@ -188,7 +188,7 @@ define([
name = encodeURIComponent(name);
callbackUrl = encodeURIComponent(callbackUrl);
key = encodeURIComponent(key);
let query = `name=${name}&cb=${callbackUrl}&key=${key}`
let query = `name=${name}&cb=${callbackUrl}&key=${key}`;
let url = getInstanceURL() + `/oosave?${query}`;
xhr.open('POST', url, true);
xhr.responseType = 'blob';