aboutsummaryrefslogtreecommitdiffhomepage
path: root/assets/common/js/picwall.js
blob: 87a93fc3b5b0d263b34f65dc46ccaec338da27d6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import Blazy from 'blazy';

(() => {
  const picwall = document.getElementById('picwall_container');
  if (picwall != null) {
    // Suppress ESLint error because that's how bLazy works
    /* eslint-disable no-new */
    new Blazy();
  }
})();