Sha256: 648ac730625f16b11ab044256417b9b99b2821454b03234269900885d7f42ac6
Contents?: true
Size: 813 Bytes
Versions: 14
Compression:
Stored size: 813 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
14 entries across 14 versions & 1 rubygems