mirror of https://github.com/xwiki-labs/cryptpad
Fix loading errors
This commit is contained in:
parent
e37cf4b59c
commit
517492f7d3
|
@ -317,9 +317,12 @@ button.primary:hover{
|
||||||
var c = types.indexOf(data.type);
|
var c = types.indexOf(data.type);
|
||||||
if (c < current) { return console.error(data); }
|
if (c < current) { return console.error(data); }
|
||||||
try {
|
try {
|
||||||
document.querySelector('.cp-loading-spinner-container').style.display = 'none';
|
var el1 = document.querySelector('.cp-loading-spinner-container');
|
||||||
document.querySelector('.cp-loading-progress-list').innerHTML = makeList(data);
|
if (el1) { el1.style.display = 'none'; }
|
||||||
document.querySelector('.cp-loading-progress-container').innerHTML = makeBar(data);
|
var el2 = document.querySelector('.cp-loading-progress-list');
|
||||||
|
if (el2) { el2.innerHTML = makeList(data); }
|
||||||
|
var el3 = document.querySelector('.cp-loading-progress-container');
|
||||||
|
if (el3) { el3.innerHTML = makeBar(data); }
|
||||||
} catch (e) { console.error(e); }
|
} catch (e) { console.error(e); }
|
||||||
};
|
};
|
||||||
window.CryptPad_updateLoadingProgress = updateLoadingProgress;
|
window.CryptPad_updateLoadingProgress = updateLoadingProgress;
|
||||||
|
|
Loading…
Reference in New Issue