UNPKG

remoteview

Version:

Remote isolated browser platform by Dosyago

10 lines (8 loc) 280 B
const progress = document.currentScript.previousElementSibling; const runner = setInterval(() => { if ( progress.value < progress.max ) { progress.value += 1; } else { clearInterval(runner); } }, 17);