summaryrefslogtreecommitdiff
path: root/html/content/js/Plugins/infoPopup.js
blob: e11ad1687eadbb329e3424a96879c5d8478a0a15 (plain)
1
2
3
4
5
6
7
8
$$plugins.define('infoPopup', function (element, options) {
    element.addEventListener('click', event => {
        element.closest('.infoPopup').classList.add('moveOut');
        setTimeout(function () {
            element.closest('.infoPopup').remove()
        }, 500);
    });
});