From 529ffcbfa97ab51a64a97f6dff08aeb2bc0cc105 Mon Sep 17 00:00:00 2001 From: Minteck Date: Tue, 24 Aug 2021 15:38:16 +0200 Subject: Update --- Neutron-trunk/cms-special/admin-v2/$resources/admin.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Neutron-trunk/cms-special/admin-v2/$resources/admin.js (limited to 'Neutron-trunk/cms-special/admin-v2/$resources/admin.js') diff --git a/Neutron-trunk/cms-special/admin-v2/$resources/admin.js b/Neutron-trunk/cms-special/admin-v2/$resources/admin.js new file mode 100644 index 0000000..bca683b --- /dev/null +++ b/Neutron-trunk/cms-special/admin-v2/$resources/admin.js @@ -0,0 +1,16 @@ +window.onscroll = () => { + // console.log("> Scroll"); + if (window.scrollY >= 52 && !document.getElementById('portal-background').classList.contains('scrolled')) { + // console.log("> ADD"); + document.getElementById('portal-background').classList.add('scrolled'); + } else if (window.scrollY < 52 && document.getElementById('portal-background').classList.contains('scrolled')) { + // console.log("> REMOVE"); + document.getElementById('portal-background').classList.remove('scrolled'); + } else { + // console.log("> Nothing"); + } +} + +window.onbeforeunload = () => { + window.parent.$("#loader").fadeIn(200); +} \ No newline at end of file -- cgit