Update pages.html
Browse files- pages.html +9 -9
pages.html
CHANGED
@@ -1085,13 +1085,13 @@ var span_1 = document.getElementsByClassName("close_1")[0];
|
|
1085 |
// Function to open the modal
|
1086 |
function openModal(modal) {
|
1087 |
currentMaxZIndex += 1;
|
1088 |
-
|
1089 |
-
|
1090 |
}
|
1091 |
|
1092 |
// Function to close the modal
|
1093 |
function closeModal(modal) {
|
1094 |
-
|
1095 |
currentMaxZIndex = 20; // Reset z-index to initial value
|
1096 |
}
|
1097 |
|
@@ -1127,13 +1127,13 @@ var span_2 = document.getElementsByClassName("close_2")[0];
|
|
1127 |
// Function to open the modal
|
1128 |
function openModal(modal) {
|
1129 |
currentMaxZIndex += 1;
|
1130 |
-
|
1131 |
-
|
1132 |
}
|
1133 |
|
1134 |
// Function to close the modal
|
1135 |
function closeModal(modal) {
|
1136 |
-
|
1137 |
currentMaxZIndex = 20; // Reset z-index to initial value
|
1138 |
}
|
1139 |
|
@@ -1170,13 +1170,13 @@ var span_3 = document.getElementsByClassName("close_3")[0];
|
|
1170 |
// Function to open the modal
|
1171 |
function openModal(modal) {
|
1172 |
currentMaxZIndex += 1;
|
1173 |
-
|
1174 |
-
|
1175 |
}
|
1176 |
|
1177 |
// Function to close the modal
|
1178 |
function closeModal(modal) {
|
1179 |
-
|
1180 |
currentMaxZIndex = 20; // Reset z-index to initial value
|
1181 |
}
|
1182 |
|
|
|
1085 |
// Function to open the modal
|
1086 |
function openModal(modal) {
|
1087 |
currentMaxZIndex += 1;
|
1088 |
+
modal_1.style.display = "block";
|
1089 |
+
modal_1.style.zIndex = currentMaxZIndex;
|
1090 |
}
|
1091 |
|
1092 |
// Function to close the modal
|
1093 |
function closeModal(modal) {
|
1094 |
+
modal_1.style.display = "none";
|
1095 |
currentMaxZIndex = 20; // Reset z-index to initial value
|
1096 |
}
|
1097 |
|
|
|
1127 |
// Function to open the modal
|
1128 |
function openModal(modal) {
|
1129 |
currentMaxZIndex += 1;
|
1130 |
+
modal_2.style.display = "block";
|
1131 |
+
modal_2.style.zIndex = currentMaxZIndex;
|
1132 |
}
|
1133 |
|
1134 |
// Function to close the modal
|
1135 |
function closeModal(modal) {
|
1136 |
+
modal_2.style.display = "none";
|
1137 |
currentMaxZIndex = 20; // Reset z-index to initial value
|
1138 |
}
|
1139 |
|
|
|
1170 |
// Function to open the modal
|
1171 |
function openModal(modal) {
|
1172 |
currentMaxZIndex += 1;
|
1173 |
+
modal_3.style.display = "block";
|
1174 |
+
modal_3.style.zIndex = currentMaxZIndex;
|
1175 |
}
|
1176 |
|
1177 |
// Function to close the modal
|
1178 |
function closeModal(modal) {
|
1179 |
+
modal_3.style.display = "none";
|
1180 |
currentMaxZIndex = 20; // Reset z-index to initial value
|
1181 |
}
|
1182 |
|