7 lines
222 B
Plaintext
7 lines
222 B
Plaintext
document.addEventListener('DOMContentLoaded', function() {
|
|
var modalElements = Array.from(document.querySelectorAll('.modal'));
|
|
modalElements.forEach(function(modal) {
|
|
window.utils.setup('modal', modal);
|
|
});
|
|
});
|