mirror of
https://github.com/QuiteAFancyEmerald/Holy-Unblocker.git
synced 2025-05-15 21:00:00 -04:00

- Tidy up backend JS - Tidy up frontend JS - Add Emulators - Add frame page for all stealth pages - Add random invisible cooking inserts - Fix header misalignment - Random other tiny fixes and improvements
6 lines
No EOL
371 B
JavaScript
6 lines
No EOL
371 B
JavaScript
window.addEventListener('DOMContentLoaded', function() {
|
|
document.querySelectorAll('[data-bs-hover-animate]').forEach(function(l) {
|
|
l.onmouseenter = function() { this.classList.add('animated', this.getAttribute('data-bs-hover-animate')); }
|
|
l.onmouseleave = function() { this.classList.remove('animated', this.getAttribute('data-bs-hover-animate')); }
|
|
});
|
|
}, false); |