- 4
- 강한남자
- 조회 수 1857
스킨 sticker.js에
for(i in sticker){
html += '<li class="sticker_image">';
html += '<a href="javascript:;" onclick="loadSticker('+sticker[i].sticker_srl+', '+(parent_srl ? parent_srl : 'false') +', '+(comment_srl ? comment_srl : 'false')+');">'
html += '<div title="'+sticker[i].title+'">';
html += '<img src="'+sticker[i].main_image+'" width="30" height="30">';
html += "</div>";
html += '</a>';
html += "</li>";
}
이 부분을
for(i in sticker){
if (sticker[i].sticker_srl) {
html += '<li class="sticker_image">';
html += '<a href="javascript:;" onclick="loadSticker('+sticker[i].sticker_srl+', '+(parent_srl ? parent_srl : 'false') +', '+(comment_srl ? comment_srl : 'false')+');">'
html += '<div title="'+sticker[i].title+'">';
html += '<img src="'+sticker[i].main_image+'" width="30" height="30">';
html += "</div>";
html += '</a>';
html += "</li>";
}
}
이렇게 바꾸시면 안뜰꺼 같습니다.
포함 6명이 추천











추가로 500포인트만큼 포인트 폭탄+를 받았습니다.