summaryrefslogtreecommitdiff
path: root/html/content/js/Modals/modal.js
blob: 7ce91450852d36acbc944f4c5673628cb9749dec (plain)
1
2
3
4
5
6
$$plugins.define('modal', ['domHelper'], function (element, options, $) {
    var close = $(element).find('.modal__close');
    close.on('click', function () {
        $(element).removeClass('open');
	});
});