From 43fb7eaae95203cad2fbf0ab09469da86e284b83 Mon Sep 17 00:00:00 2001 From: yabo0812 Date: Fri, 24 Oct 2025 17:42:02 +0900 Subject: [PATCH] =?UTF-8?q?=EA=B4=80=EB=A0=A8=ED=9A=8C=EC=9D=98=EB=A1=9D?= =?UTF-8?q?=20=EB=A7=81=ED=81=AC=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- design/uiux/prototype/05-회의진행.html | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/design/uiux/prototype/05-회의진행.html b/design/uiux/prototype/05-회의진행.html index 60b1030..6733318 100644 --- a/design/uiux/prototype/05-회의진행.html +++ b/design/uiux/prototype/05-회의진행.html @@ -1222,6 +1222,20 @@ }, 1000); } + // 관련 회의록 열기 + function openRelatedDoc(docId) { + // 새 탭으로 회의록 상세조회 화면 열기 + window.open('10-회의록상세조회.html', '_blank'); + + // 기본 동작(링크 이동) 방지 + return false; + } + + // 용어 상세 정보 보기 + function showTermDetail(termName) { + alert(`"${termName}" 용어에 대한 상세 정보를 표시합니다.`); + } + // 페이지 로드 시 타이머 시작 document.addEventListener('DOMContentLoaded', function() { updateTimer();