Fix issue with updateTopbarTitle

This commit is contained in:
wearrrrr 2024-03-27 10:39:38 -05:00
parent 46d5cef377
commit ab6457d95c

View file

@ -212,9 +212,6 @@
} }
function updateTopbarTitle(iframe) { function updateTopbarTitle(iframe) {
let topbarTitle = document.getElementById("url-text"); let topbarTitle = document.getElementById("url-text");
if (iframe.contentDocument.title == "") {
iframe.contentDocument.title = "Loading...";
}
topbarTitle.innerText = iframe.contentDocument.title; topbarTitle.innerText = iframe.contentDocument.title;
} }
</script> </script>