Sha256: 17d03f39b36ae4d6bde3f18c37df5f1f4285458f4d3031fa14f39ff1c6ac3efa

Contents?: true

Size: 1.65 KB

Versions: 10

Compression:

Stored size: 1.65 KB

Contents

$(document).ready(function () {
  var safuiAlert = $("#safeui-alert");
  if (safuiAlert) {
    safuiAlert
      .first()
      .delay(10000)
      .slideUp(1000, function () {
        $(this).remove();
      });
  }
});
let getLayout = document.getElementById("header");
const layout = getLayout.dataset.layout;
if (layout == "feature-1") {
  var removeNav = () => {
    let homeLink = document.getElementById("home-link");
    homeLink.style.marginRight = "10px";
    document.getElementById("h1-img-wrapper").prepend(homeLink);

    document.getElementById("header").style.display = "none";
    document.querySelector(".feature1-h1").style.width = "100%";
    document.querySelector(".feature1-h2").style.display = "none";
    console.log(document.querySelector(".feature1-flex-container"));
    document.querySelector(".feature1-flex-container").style.paddingTop =
      "0rem";
    document.querySelector(".feature1-flex-container").style.paddingBottom =
      "0rem";
  };
} else {
  var removeNav = () => {
    let homeLink = document.getElementById("home-link");
    homeLink.style.marginRight = "10px";
    document.getElementById("h1-img-wrapper").prepend(homeLink);
    document
      .getElementById("h1-img-wrapper")
      .style.setProperty("align-items", "unset", "important");
    document.getElementById("header").style.display = "none";
    document.getElementById("h1-img").style.display = "none";
    document.getElementById("feature-h1").style.width = "100%";
    document.getElementById("feature-h2").style.display = "none";
    let safeUiAlert = document.getElementById("safeui-alert");
    if (safeUiAlert) {
      safeUiAlert.style.display = "none";
    }
  };
}

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
appscms-tools-theme-3.3.3 assets/js/theme.js
appscms-tools-theme-3.3.2 assets/js/theme.js
appscms-tools-theme-3.3.1 assets/js/theme.js
appscms-tools-theme-3.3.0 assets/js/theme.js
appscms-tools-theme-3.2.9 assets/js/theme.js
appscms-tools-theme-3.2.8 assets/js/theme.js
appscms-tools-theme-3.2.7 assets/js/theme.js
appscms-tools-theme-3.2.6 assets/js/theme.js
appscms-tools-theme-3.2.5 assets/js/theme.js
appscms-tools-theme-3.2.4 assets/js/theme.js