Skip to content

Commit

Permalink
[feat] 알람 x 버튼 클릭 시 읽음 처리 완료 #66
Browse files Browse the repository at this point in the history
  • Loading branch information
soo01234 committed May 15, 2024
1 parent c84cf5a commit d4587c5
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/main/resources/static/js/inc/alarm.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ $("#alarmIcon").click(function () {
$(document).ready(function() {
// 페이지가 완전히 로드된 후에 알림을 띄우는 함수 실행
showNotifications();

// x 버튼 클릭 시 ...
$(document).on('click', '.bi.bi-x-square',function(e) {
e.stopPropagation(); // 이벤트 전파 중지
Expand All @@ -24,9 +23,9 @@ $(document).ready(function() {
console.log("notifyID")
console.log(notifyID)
console.log(isRead)
if (isRead === true) {
if (isRead) {
// 해당 일정의 부모 요소를 숨깁니다.
$(this).closest('.card-outer').hide();
$(this).closest('.card-outer').remove();
} else {
isRead = true; // isRead 의 값이 false 인 경우, x 버튼을 누르면 true 로 바꾸기
console.log("false -> true")
Expand Down

0 comments on commit d4587c5

Please sign in to comment.