Sha256: 7e64ccaecba2b4ce3887bab60bca714df2ac5f88f18c713f951c56d2a8599a31

Contents?: true

Size: 631 Bytes

Versions: 20

Compression:

Stored size: 631 Bytes

Contents

// `script[nomodule]` polyfill for Safari 10.1.
// Source: https://gist.github.com/samthor/64b114e4a4f539915a95b91ffd340acc
(function() {
  var check = document.createElement('script');
  if (!('noModule' in check) && 'onbeforeload' in check) {
    var support = false;
    document.addEventListener('beforeload', function (e) {
      if (e.target === check) {
        support = true;
      } else if (!e.target.hasAttribute('nomodule') || !support) {
        return;
      }
      e.preventDefault();
    }, true);

    check.type = 'module';
    check.src = '.';
    document.head.appendChild(check);
    check.remove();
  }
}())

Version data entries

20 entries across 20 versions & 2 rubygems

Version Path
jekyll-theme-hydejack-9.2.1 _includes/scripts/nomodule.js
jekyll-theme-hydejack-9.2.0 _includes/scripts/nomodule.js
jekyll-theme-hydejack-9.1.9 _includes/scripts/nomodule.js
jekyll-theme-hydejack-9.1.8 _includes/scripts/nomodule.js
jekyll-theme-hydejack-9.1.7 _includes/scripts/nomodule.js
jekyll-theme-hydejack-9.1.6 _includes/scripts/nomodule.js
jekyll-theme-hydejack-9.1.5 _includes/scripts/nomodule.js
jekyll-theme-hydejack-9.1.4 _includes/scripts/nomodule.js
jekyll-theme-hydejack-9.1.3 _includes/scripts/nomodule.js
jekyll-theme-hydejack-9.1.2 _includes/scripts/nomodule.js
jekyll-theme-hydejack-9.1.1 _includes/scripts/nomodule.js
jekyll-theme-hydejack-9.1.0 _includes/scripts/nomodule.js
jekyll-theme-hydejack-9.0.4 _includes/scripts/nomodule.js
jekyll-theme-hydejack-9.0.3 _includes/scripts/nomodule.js
jekyll-theme-hydejack-9.0.2 _includes/scripts/nomodule.js
jekyll-theme-hydejack-9.0.1 _includes/scripts/nomodule.js
jekyll-theme-hydejack-9.0.0 _includes/scripts/nomodule.js
jekyll-theme-hydebetty-1.0.2 _includes/scripts/nomodule.js
jekyll-theme-hydebetty-1.0.1 _includes/scripts/nomodule.js
jekyll-theme-hydejack-8.5.2 _includes/scripts/nomodule.js