picwall.js 245 B

12345678910
  1. import Blazy from 'blazy';
  2. (() => {
  3. const picwall = document.getElementById('picwall_container');
  4. if (picwall != null) {
  5. // Suppress ESLint error because that's how bLazy works
  6. /* eslint-disable no-new */
  7. new Blazy();
  8. }
  9. })();