new template

This commit is contained in:
CHIEFSOFT\ameye
2024-05-25 19:09:03 -04:00
parent f41ba14db2
commit c0d4d82c43
331 changed files with 119038 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
$('.modal').on('show.bs.modal', function (e) {
if($(e.currentTarget).attr("data-popup")){
$("body").addClass("body-scrollable");
}
});
$('.modal').on('hidden.bs.modal', function (e) {
$("body").removeClass("body-scrollable");
});