fradrive/templates/widgets/modal/modal.julius
2019-02-20 22:09:53 +01:00

8 lines
306 B
Plaintext

document.addEventListener('DOMContentLoaded', function() {
// TODO: replace for loop with one precise query for this specific modal instance
var modalElements = Array.from(document.querySelectorAll('.modal'));
modalElements.forEach(function(modal) {
window.utils.setup('modal', modal);
});
});