From 1582d6a874c843edfc4bdfad8d68fed812cceec6 Mon Sep 17 00:00:00 2001 From: KNKIM Date: Fri, 19 Nov 2021 16:18:22 +0900 Subject: [PATCH] =?UTF-8?q?=EA=B3=B5=EC=A7=80=EC=82=AC=ED=95=AD=20:=20?= =?UTF-8?q?=EA=B3=B5=EC=A7=80=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/webapp/WEB-INF/jsp/nlib/bbs/listAncmnts.jsp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main/webapp/WEB-INF/jsp/nlib/bbs/listAncmnts.jsp b/src/main/webapp/WEB-INF/jsp/nlib/bbs/listAncmnts.jsp index b3b8d391..15342b2d 100644 --- a/src/main/webapp/WEB-INF/jsp/nlib/bbs/listAncmnts.jsp +++ b/src/main/webapp/WEB-INF/jsp/nlib/bbs/listAncmnts.jsp @@ -136,8 +136,9 @@ $.each(jsonObj.data,function(key,obj) { var li = $(document.createElement('li')); li.append($('').attr('class', 't-num').html(obj.rno)); - li.append($('').attr('class', 't-type').html((obj.notiYn == "Y" ? '공지' : ''))); - li.append($('').attr('class', 't-tit').html("" + obj.title + "")); + li.append($('').attr('class', 't-tit').html("" + + (obj.notiYn == "Y" ? '공지' : '') + + obj.title + "")); li.append($('').attr('class', 't-writer').html(obj.regNm)); li.append($('').attr('class', 't-date').html(obj.regDd)); li.append($('').attr('class', 't-file').html((obj.attachYn == "Y" ? '파일 아이콘' : '')));