openclassify/addons/default/visiosoft/base-theme/resources/js/modal_include.js
2021-07-14 17:12:16 +03:00

9 lines
327 B
JavaScript

$('.remote').on('show.bs.modal', function (e) {
if (typeof e.relatedTarget !== "undefined") {
$(this).find('.modal-content').load(e.relatedTarget.href, function () {
const event = new Event('custom.modal.loaded');
$(this).closest('.modal').get(0).dispatchEvent(event);
});
}
});