|
@@ -776,10 +776,11 @@ $(document).ready(function() {
|
|
|
</c:forEach>
|
|
|
drawPhrChart("bloodSugarChart", bloodSugarDatas, "혈당");
|
|
|
|
|
|
- // 상단 환자 정보 영역 토글 이벤트
|
|
|
+ // 상단 환자 정보 영역 토글 이벤트
|
|
|
+ $("#userInfo").find(".user-info").show();
|
|
|
$(document).on("click", ".toggle .toggleHeader", function () {
|
|
|
$(this).find("a.toggleBtn").toggleClass("active");
|
|
|
- $(this).closest(".card").find(".user-info").slideToggle("fast");
|
|
|
+ $("#userInfo").slideToggle("fast");
|
|
|
});
|
|
|
|
|
|
// 섹션 토글
|
|
@@ -1215,7 +1216,7 @@ $(document).ready(function() {
|
|
|
</h1>
|
|
|
<a href="javscript:;" class="toggleBtn">메뉴</a>
|
|
|
</div>
|
|
|
- <div class="card-body user-info">
|
|
|
+ <div id="userInfo" class="card-body user-info">
|
|
|
<div class="mb-3">
|
|
|
<button class="patientInfo btn btn-primary" onclick="gotoPatientInfo()"><i class="mdi mdi-account"></i> 환자정보 관리</button>
|
|
|
</div>
|