]> git.immae.eu Git - github/shaarli/Shaarli.git/blob - assets/common/js/picwall.js
ConfigManager: add a method to remove an entry
[github/shaarli/Shaarli.git] / assets / common / js / picwall.js
1 import Blazy from 'blazy';
2
3 (() => {
4 const picwall = document.getElementById('picwall_container');
5 if (picwall != null) {
6 // Suppress ESLint error because that's how bLazy works
7 /* eslint-disable no-new */
8 new Blazy();
9 }
10 })();