mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-17 05:14:39 -05:00
remove IE support :p
This commit is contained in:
parent
cdcec542d0
commit
8aaa41de3d
1 changed files with 8 additions and 0 deletions
|
@ -82,6 +82,14 @@ document.addEventListener('DOMContentLoaded', function() {
|
||||||
window.addEventListener('resize', lazyLoadBg);
|
window.addEventListener('resize', lazyLoadBg);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const htmlContent = `<!DOCTYPE html><html><head><title>Browser is not supported :p</title><style>body{margin-left:auto;margin-right:auto;display:flex;max-width:43em;font-family:sans-serif;background-color:white;}</style></head><body><h1>Heyo :3</h1><br><p style="margin-top:4em;margin-left:-7.4em;">hoi - poke does and <b>will not work</b> on Internet Explorer :p<br>if u wanna use poke try using Firefox (firefox.com) or Chromium :3<br>love u :3</p></body></html>`;
|
||||||
|
|
||||||
|
if (/MSIE \d|Trident.*rv:/.test(navigator.userAgent)) {
|
||||||
|
document.open();
|
||||||
|
document.write(htmlContent);
|
||||||
|
document.close();
|
||||||
|
}
|
||||||
|
|
||||||
// Fade in elements on scroll or fullscreen change
|
// Fade in elements on scroll or fullscreen change
|
||||||
function fadeInElements() {
|
function fadeInElements() {
|
||||||
const elements = document.querySelectorAll('.fade-in');
|
const elements = document.querySelectorAll('.fade-in');
|
||||||
|
|
Loading…
Reference in a new issue