diff options
Diffstat (limited to 'Neutron-trunk/cms-special/admin-v2/$resources/admin.js')
-rw-r--r-- | Neutron-trunk/cms-special/admin-v2/$resources/admin.js | 16 |
1 files changed, 16 insertions, 0 deletions
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 |