Sha256: db081e06719329bee67ffbc5c1cf247d86926bd72baa82a623855d478a65ad80
Contents?: true
Size: 1.16 KB
Versions: 53
Compression:
Stored size: 1.16 KB
Contents
import footerDate from './footerDate.js'; import lazyLoad from './lazyLoad.js'; import walkText from './walkText.js'; import initSliders from './sliders.js'; import watchForMenuClicks from './translate.js'; import wrapPowerText from './wrapPowerText.js'; import addClassToOpenNavbar from './addClassToOpenNavbar.js'; //import ytEmbed from './ytEmbed.js'; //import test from './test.js'; document.addEventListener('DOMContentLoaded', function() { wrapPowerText(); initSliders(); walkText(document.body); footerDate(); lazyLoad(); watchForMenuClicks(); addClassToOpenNavbar(); // 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; }; } });
Version data entries
53 entries across 53 versions & 1 rubygems