mirror of
https://github.com/itflow-org/itflow
synced 2026-08-25 08:55:12 +00:00
8 lines
269 B
JavaScript
8 lines
269 B
JavaScript
$(document).ready(function () {
|
|
$('.modal').each(function () {
|
|
const modalId = `#${$(this).attr('id')}`;
|
|
if (window.location.href.indexOf(modalId) !== -1) {
|
|
bootstrap.Modal.getOrCreateInstance($(modalId)[0]).show();
|
|
}
|
|
});
|
|
}); |