• 목록
  • 아래로
  • 위로
  • 5
  • 제르엘
  • 조회 수 301

이놈이 밀당을 하네요. 정확히는 메인 등 특정 상황에서 위젯이 정상적으로 작동하지 않습니다. 최신 댓글 버튼 위에 마우스 커서를 올려도 반응이 없습니다. 누르면 사이트 최상단으로 이동하고요. 특정 상황에서만 이러는 지 아니면 무작위로 이러는 지는 잘 모르겠습니다만, 일단 메인 화면에서는 정상 작동하지 않습니다.


+) Study For Us 강좌 위젯은 정상 작동합니다.

작성자
제르엘 113 Lv. (6%) 1022650/1039680EXP

mochasyrup_G.jpg  XER.jpg 

아마도 야옹시티 벌레타입 짐-리더

사용 포켓몬: 매시붕, 페로코체, 비퀸, 레디안, 도나리, 메가자리

객원 멤버: 라란티스, 아리아도스

댓글 5

제르엘 작성자
profile image

음, 예전에도 문제가 있었나 보네요. 해결할 수 없는 문제인 건가요?

2018.01.24. 01:18
마스터 → 제르엘
profile image
현재 그 외에 처리할 일이 많아 뒷전으로 미루고 있는 중입니다.
2018.01.24. 01:33
네모 → 마스터
profile image

위젯 스킨에 있는 script 를 아래 코드로 바꿔주세요.


jQuery(function($){
    $(".neat-popular").each(function(){
        var $popular = $(this),
            $tabs_items = $popular.find(".tabs_items"),
            $tabs_itema = $tabs_items.find("a"),
            $tabs_inner = $popular.find(".tabs_inner");
        var $pds = $popular.find("#popular_documents_s2"),
            $nds = $popular.find("#newest_documents_s2"),
            $ncs = $popular.find("#newest_comments_s2");
        function actTab($tid){
            $tabs_itema.removeClass("tabs_active");
            $tid.addClass("tabs_active");
        }
        function actItem($sid){
            $tabs_inner.find(".tabs_active").removeClass("tabs_active");
            $sid.addClass("tabs_active");
        }
        $tabs_itema.on("mouseover click",function(e){
            e.preventDefault();
            var $tid = $(this);
            actTab($tid);
        });
        $popular.find("#pd_link_s2").on("mouseover click",function(e){
            e.preventDefault();
            actItem($pds);
        });
        $popular.find("#nd_link_s2").on("mouseover click",function(e){
            e.preventDefault();
            actItem($nds);
        });
        $popular.find("#nc_link_s2").on("mouseover click",function(e){
            e.preventDefault();
            actItem($ncs);
        });
    });
});
2018.01.24. 02:27
NoYeah → 네모
profile image
오늘 밤에 수정해놓을게요!
2018.01.24. 14:33
제르엘 작성자 → NoYeah
profile image
넵! 감사합니다!
2018.01.24. 14:33
에디터