UNPKG

susi_desktop

Version:
16 lines (12 loc) 379 B
onload = function () { const webview = document.querySelector('webview'); const loading = document.querySelector('#loader'); function onStopLoad() { loading.classList.add('hide'); } function onStartLoad() { loading.classList.remove('hide'); } webview.addEventListener('did-stop-loading', onStopLoad); webview.addEventListener('did-start-loading', onStartLoad); };