알림 기능 개선
This commit is contained in:
parent
d8e07441f0
commit
7e4c17bb0a
@ -10,7 +10,7 @@
|
||||
$(document).ready(function() {
|
||||
$("#DIV_PAGE_MAIN").removeClass("sub");
|
||||
var unreadNotiCnt = $(".noti-btn span.count").text();
|
||||
fn_myAlert(unreadNotiCnt);
|
||||
gfn_myAlert(unreadNotiCnt);
|
||||
});
|
||||
|
||||
function fn_search(keyword) {
|
||||
|
||||
@ -90,6 +90,8 @@ $( document ).ready(function() {
|
||||
|
||||
$('.list-accordion .question').removeClass('on');
|
||||
$qObj.addClass('on');
|
||||
|
||||
$qObj.find("span unread").remove();
|
||||
});
|
||||
|
||||
}
|
||||
@ -156,7 +158,7 @@ $( document ).ready(function() {
|
||||
else li.find(".question").append($('<span />').attr("class", "type").html("[소장자료관]"));
|
||||
|
||||
var unread = "";
|
||||
if(obj.readYn != "Y") unread = " (미확인)";
|
||||
if(obj.readYn != "Y") unread = " <unread>(미확인)</unread>";
|
||||
li.find(".question").append($('<span />').html(obj.title + unread));
|
||||
li.find(".question").append($('<span />').attr('class', 'date').html(obj.regDd));
|
||||
li.append($('<div></div>').attr('class', 'answer').attr('style', 'display: none;'));
|
||||
|
||||
Loading…
Reference in New Issue
Block a user