Sha256: 18a58369f2fc259a5ed6699eb25eca59b808c2598722f3124e79d16e62691f1c
Contents?: true
Size: 809 Bytes
Versions: 6
Compression:
Stored size: 809 Bytes
Contents
const SiteFunc = () => { if (!Config.respond) { // NOT Responsive if (!Site.mobile.active) { // NOT Mobile if (SiteIsLibrary && BodyIsHome) { // IS Library AND IS Home gsap.set(site,{ display : "block" }); } else { gsap.set(site,{ display : Config.display }); } } } else { // IS Responsive if (SiteIsLibrary && BodyIsHome) { // IS Library AND IS Home gsap.set(site,{ display : "block" }); } else { gsap.set(site,{ display : Config.display }); } } setTimeout(function() { gsap.set(Overlay.load.screen,{ clearProps : "display" }); SiteTl.pause(); },1000); } $(SiteFunc); $(window).resize(SiteFunc);
Version data entries
6 entries across 6 versions & 1 rubygems