8 lines
306 B
Plaintext
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);
|
|
});
|
|
});
|