From ea9097b12406e994224d9f84f9aba4845e8e8ee0 Mon Sep 17 00:00:00 2001 From: lcq Date: Sun, 2 Jan 2022 09:09:45 +0800 Subject: [PATCH] update divider margin --- view/scripts/controllers/tags-controller.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/scripts/controllers/tags-controller.js b/view/scripts/controllers/tags-controller.js index 335ce68..be06708 100644 --- a/view/scripts/controllers/tags-controller.js +++ b/view/scripts/controllers/tags-controller.js @@ -90,7 +90,7 @@ app.controller('tagsCtr', ['$scope', '$filter', '$state', '$window', '$statePara }, 10); } else if ($scope.showMode == 'item' && bookmarks.length > $scope.pageSize / 2 && $scope.currentTagId == -1) { $timeout(() => { - $("#" + bookmarks[bookmarks.length / 2 - 1].id).after(`
`); + $("#" + bookmarks[bookmarks.length / 2 - 1].id).after(`
`); }, 100); }