Welcome to mirror list, hosted at ThFree Co, Russian Federation.

scripts.html « partials « layouts « src - github.com/twbs/blog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1a2ae702f9099d39169238845cbc697c4d207b81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{{ $bootstrapJs := resources.Get "/js/bootstrap.min.js" }}
<script src="{{ $bootstrapJs.Permalink | relURL }}"></script>

<script>
  (function(w, d) {
      var b = d.getElementsByTagName('body')[0];
      var s = d.createElement('script');
      var io = 'IntersectionObserver' in w && 'IntersectionObserverEntry' in w &&
                 'intersectionRatio' in w.IntersectionObserverEntry.prototype &&
                 'isIntersecting' in w.IntersectionObserverEntry.prototype;
      var v = io ? '17.x' : '8.x';
      s.async = true;
      s.src = '/assets/js/vendor/lazyload.' + v + '.iife.min.js';
      w.lazyLoadOptions = {
        elements_selector: '.lazy',
        threshold: 150
      };
      b.appendChild(s);
  }(window, document));
</script>