juijs / jui-ui

JUI provide all kinds of UI components that are used in web pages. However, charts and grids are not included.
http://uiplay.jui.io
404 stars 104 forks source link

Master #475

Closed madamSong closed 5 years ago

madamSong commented 5 years ago

next, prev 버튼 클릭시 PC환경에서는 잘되나 모바일 환경에서는 뺑뺑이 도는 현상이 있습니다. 하여 이를 timeout을 통하여 처리 하였습니다.

         var cnt = 0;

function setEventAction(self) {
    self.addEvent($(self.root).find(".prev"), "click", function(e) {
        cnt++;
        if(cnt == 1) self.prev();
        window.setTimeout(function(){cnt = 0;}, 500);
        return false;
    });

    self.addEvent($(self.root).find(".next"), "click", function(e) {
        cnt++;
        if (cnt == 1) self.next();
        window.setTimeout(function(){cnt = 0;}, 500);
        return false;
    });
}

이점 참고 해주시면 감사 하겠습니다.

seogi1004 commented 5 years ago

es6 브랜치를 fork하시고, paging.js만 수정해서 다시 올려주세요,