Sha256: 41c84f64dd1a0f3ba209c6644c1f82818e12ceca41fe0223506db6cfa1bcde19

Contents?: true

Size: 588 Bytes

Versions: 5

Compression:

Stored size: 588 Bytes

Contents

let SiteTl = gsap.timeline({ repeat : -1 }),
    SiteIsTheme,
    SiteIsLibrary,
    SiteIsShareable;

if (Config.install == "theme") {
  SiteIsTheme = true;
}

if (Config.install == "library") {
  SiteIsLibrary = true;
}

if (Config.shareable) {
  SiteIsShareable = true;
}

function Target(number) {
  var output = document.querySelector(Overlay.load.wrap).children[number - 1];
  return output;
}

function SwitchOn(color) {
  return {
    display : "block",
    fill : color
  };
}

function SwitchOff() {
  return {
    clearProps : "display",
    delay : Overlay.load.speed
  };
}

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
futuro-0.8.6 assets/js/header/custom/Config.js
futuro-0.8.5 assets/js/header/custom/Config.js
futuro-0.8.4 assets/js/header/custom/Config.js
futuro-0.8.3 assets/js/header/custom/Config.js
futuro-0.8.2 assets/js/header/custom/Config.js