Sha256: 6a37c2db368427e6bf4fe210f8b0270ca9122f752f882d6139f52e01e64218b5

Contents?: true

Size: 1.47 KB

Versions: 1

Compression:

Stored size: 1.47 KB

Contents

import footerDate from './footerDate.js';
import searchToggle from './searchToggle.js';
import lazyLoad from './lazyLoad.js';
import walkText from './walkText.js';
import initSliders from './sliders.js';
import moveSearchIcon from './moveSearchIcon.js';
import highlightNav from './highlightCurrentNav.js';
import watchForMenuClicks from './translate.js';
import closeMenuOnClick from './closeMenuOnClick.js';
import accordion from './accordion.js';
import wrapPowerText from './wrapPowerText.js';
import landingPageInit from './landingPage.js';
//import './babelTest.js';
//import test from './test.js';

document.addEventListener('DOMContentLoaded', function() {
  highlightNav();
  moveSearchIcon();
  watchForMenuClicks();
  // polyfill for Element.closest() b/c IE can't handle an anchor.match() when the anchor has another element inside it (Like spans used for BS4 menu toggler)
  if (!Element.prototype.matches) {
    Element.prototype.matches = Element.prototype.msMatchesSelector || Element.prototype.webkitMatchesSelector;
  }

  if (!Element.prototype.closest) {
    Element.prototype.closest = function(s) {
      var el = this;

      do {
        if (el.matches(s)) return el;
        el = el.parentElement || el.parentNode;
      } while (el !== null && el.nodeType === 1);
      return null;
    };
  }
  //test();
  wrapPowerText();
  initSliders();
  walkText(document.body);
  footerDate();
  lazyLoad();
  landingPageInit();
  accordion();
  searchToggle();
  closeMenuOnClick();
});

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
kcc-gem-theme-1.32.13 assets/js/theme/src/all.js