mirror of
https://github.com/itflow-org/itflow
synced 2026-02-28 02:44:53 +00:00
8 lines
236 B
JavaScript
8 lines
236 B
JavaScript
$(document).ready(function () {
|
|
$('.modal').each(function () {
|
|
const modalId = `#${$(this).attr('id')}`;
|
|
if (window.location.href.indexOf(modalId) !== -1) {
|
|
$(modalId).modal('show');
|
|
}
|
|
});
|
|
}); |