|
|
|
@ -17,6 +17,19 @@
|
|
|
|
|
</head>
|
|
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
<!-- modal-wrapper : 커뮤니티 공유 팝업 -->
|
|
|
|
|
<div id="sharedPop" class="modal-wrapper">
|
|
|
|
|
<div class="modal_content" style="width: calc(100% - 80px)">
|
|
|
|
|
<div class="center_title">기록을 커뮤니티에 공유하시겠습니까?</div>
|
|
|
|
|
<div class="container_y_n">
|
|
|
|
|
<button class="btn_y_n">예</button>
|
|
|
|
|
<button class="btn_y_n">아니오</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="modal_layer"></div>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- //modal-wrapper -->
|
|
|
|
|
|
|
|
|
|
<!-- wrap -->
|
|
|
|
|
<div class="wrap" id="view_sn_nutrition_powderedmilk">
|
|
|
|
|
|
|
|
|
@ -510,6 +523,15 @@
|
|
|
|
|
clickable: true,
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$(".nutrition_kinds_btn").on("click", function () {
|
|
|
|
|
$("#sharedPop").toggleClass("open")
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$(".btn_y_n").on("click", function () {
|
|
|
|
|
$("#sharedPop").removeClass("open")
|
|
|
|
|
})
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
</html>
|