Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
v4for authored Dec 5, 2024
1 parent 6e0474f commit 0a73568
Showing 1 changed file with 0 additions and 17 deletions.
17 changes: 0 additions & 17 deletions gxmes/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -329,23 +329,6 @@ <h1>Welcome to Vafor IT</h1>
searchgxmes();

});

var savedTabName = localStorage.getItem('tabName');
var savedTabImage = localStorage.getItem('tabImage');
if (savedTabName) document.title = savedTabName;
if (savedTabImage) {
var link = document.querySelector("link[rel*='icon']") || document.createElement('link');
link.type = 'image/x-icon';
link.rel = 'shortcut icon';
link.href = savedTabImage;
document.head.appendChild(link);
}

// Redirect if necessary
if (window.self === window.top && localStorage.getItem('blank2') === 'true') {
redirectToWebsite();
}
});
</script>
</body>
</html>

0 comments on commit 0a73568

Please sign in to comment.