Sha256: 8910ac6dbf2cfbebe84332389028288bce7bb17dbf6f86c345ce8c79746143d3
Contents?: true
Size: 1.45 KB
Versions: 11
Compression:
Stored size: 1.45 KB
Contents
let Site = { scramble : { chars : "1234567890%", speed : 0.6 }, mobile : { active : true }, tablet : { active : false, width : 768 }, desktop : { active : false, width : 1200 }, focus : false, topbar : { lnk : ".link.navigation" }, scroll : { lnk : ".lnk.scroller" }, chapter : { target : ".wrap.type-chapter" }, page : { artwork : ".area.page-artwork", share : ".util-share", url : ".util-url", height : 560 }, code : { page : ".wrap.type-page.style-docs", expand : ".block.expand-block", wrap : ".code-wrap", scss : ".code-scss", html : ".code-html" } }; Site.mobile.query = "screen and (max-width:" + (Site.tablet.width - 1) + "px)"; Site.tablet.query = "screen and (min-width:" + Site.tablet.width + "px) and (max-width:" + (Site.desktop.width - 1) + "px)"; Site.desktop.query = "screen and (min-width:" + Site.desktop.width + "px)"; enquire.register(Site.mobile.query,{ match : function() { Site.mobile.active = true; Site.tablet.active = false; Site.desktop.active = false; } }); enquire.register(Site.tablet.query,{ match : function() { Site.mobile.active = false; Site.tablet.active = true; Site.desktop.active = false; } }); enquire.register(Site.desktop.query,{ match : function() { Site.mobile.active = false; Site.tablet.active = false; Site.desktop.active = true; } });
Version data entries
11 entries across 11 versions & 1 rubygems