mirror of
https://github.com/itflow-org/itflow
synced 2026-08-24 16:35:15 +00:00
8 lines
291 B
JavaScript
8 lines
291 B
JavaScript
document.addEventListener('DOMContentLoaded', function () {
|
|
document.querySelectorAll('.modal').forEach(function (modal) {
|
|
if (modal.id && window.location.href.indexOf('#' + modal.id) !== -1) {
|
|
bootstrap.Modal.getOrCreateInstance(modal).show();
|
|
}
|
|
});
|
|
});
|