We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42d6843 commit 0432fefCopy full SHA for 0432fef
1 file changed
public/js/cover.js
@@ -107,9 +107,11 @@ $(".ui-history").click(function () {
107
108
function checkHistoryList() {
109
if ($("#history-list").children().length > 0) {
110
+ $('.pagination').show();
111
$(".ui-nohistory").hide();
112
$(".ui-import-from-browser").hide();
113
} else if ($("#history-list").children().length == 0) {
114
+ $('.pagination').hide();
115
$(".ui-nohistory").slideDown();
116
getStorageHistory(function (data) {
117
if (data && data.length > 0 && getLoginState() && historyList.items.length == 0) {
0 commit comments