Spaces:
Running
Running
Update index.html
Browse files- index.html +14 -13
index.html
CHANGED
@@ -1215,20 +1215,21 @@
|
|
1215 |
let currentPeriod = 3;
|
1216 |
|
1217 |
// 페이지 로드 시 이벤트 리스너 등록
|
1218 |
-
|
1219 |
-
|
|
|
1220 |
|
1221 |
-
// 이벤트
|
1222 |
-
|
1223 |
-
|
1224 |
-
|
1225 |
-
|
1226 |
-
|
1227 |
-
|
1228 |
-
|
1229 |
-
|
1230 |
-
|
1231 |
-
|
1232 |
|
1233 |
// 카드 클릭 처리 함수
|
1234 |
function handleCardClick(card) {
|
|
|
1215 |
let currentPeriod = 3;
|
1216 |
|
1217 |
// 페이지 로드 시 이벤트 리스너 등록
|
1218 |
+
// 페이지 로드 시 이벤트 리스너 등록
|
1219 |
+
document.addEventListener('DOMContentLoaded', function() {
|
1220 |
+
console.log('DOM loaded, setting up click handlers...');
|
1221 |
|
1222 |
+
// 모든 option-card에 직접 이벤트 리스너 추가
|
1223 |
+
const cards = document.querySelectorAll('.option-card');
|
1224 |
+
cards.forEach(card => {
|
1225 |
+
card.addEventListener('click', function(e) {
|
1226 |
+
e.preventDefault();
|
1227 |
+
e.stopPropagation();
|
1228 |
+
handleCardClick(this);
|
1229 |
+
});
|
1230 |
+
});
|
1231 |
+
});
|
1232 |
+
|
1233 |
|
1234 |
// 카드 클릭 처리 함수
|
1235 |
function handleCardClick(card) {
|