diff options
Diffstat (limited to '')
-rw-r--r-- | public/js/cover.js | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/public/js/cover.js b/public/js/cover.js index 25434ed9..df2173b5 100644 --- a/public/js/cover.js +++ b/public/js/cover.js @@ -21,7 +21,9 @@ var options = { </li>', page: 18, plugins: [ - ListPagination({}) + ListPagination({ + outerWindow: 1 + }) ] }; var historyList = new List('history', options); @@ -305,6 +307,8 @@ $(".ui-refresh-history").click(function () { var lastKeyword = $('.search').val(); $('.search').val(''); historyList.search(); + $('#history-list').slideUp('fast'); + $('.pagination').slideUp('fast'); resetCheckAuth(); historyList.clear(); @@ -315,6 +319,8 @@ $(".ui-refresh-history").click(function () { historyList.search(lastKeyword); $('.search').val(lastKeyword); checkHistoryList(); + $('#history-list').slideDown('fast'); + $('.pagination').slideDown('fast'); }); }); |