diff --git a/customize.dist/loading.js b/customize.dist/loading.js index 22dc69c31..6e4781aaf 100644 --- a/customize.dist/loading.js +++ b/customize.dist/loading.js @@ -330,7 +330,7 @@ button:not(.btn).primary:hover{ var el3 = document.querySelector('.cp-loading-progress-container'); if (el3) { el3.innerHTML = makeBar(data); } } catch (e) { - if (!hasErrored) { console.error(e); } + //if (!hasErrored) { console.error(e); } } }; window.CryptPad_updateLoadingProgress = updateLoadingProgress; diff --git a/www/common/media-tag.js b/www/common/media-tag.js index a00377ff4..c328399c5 100644 --- a/www/common/media-tag.js +++ b/www/common/media-tag.js @@ -718,7 +718,7 @@ var factory = function () { if (cache[uid].mt !== mediaObject) { // Add progress for other instances of this tag cache[uid].mt.on('progress', function (obj) { - if (!mediaObject.bar) { makeProgressBar(cfg, mediaObject); } + if (!mediaObject.bar && !cfg.force) { makeProgressBar(cfg, mediaObject); } emit('progress', { progress: obj.progress });