mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-22 17:11:07 +00:00
Fix the box shadow on the card entry
This commit is contained in:
parent
68cb89a516
commit
78d6c3090a
2 changed files with 10 additions and 11 deletions
|
@ -8,9 +8,14 @@ function toggleFocus(cardToToogleFocus) {
|
|||
}
|
||||
|
||||
$(document).ready(() => {
|
||||
const cards = $('#content').find('.card');
|
||||
const cardNumber = cards.length;
|
||||
let cardIndex = 0;
|
||||
const cardNumber = $('#content ul.data > li').length;
|
||||
let card = $('#content ul.data > li')[cardIndex];
|
||||
/* If we come from next page */
|
||||
if (window.location.hash === '#prev') {
|
||||
cardIndex = cardNumber - 1;
|
||||
}
|
||||
let card = cards[cardIndex];
|
||||
const pagination = $('.pagination');
|
||||
|
||||
/* Show nothing on quickstart */
|
||||
|
@ -18,12 +23,6 @@ $(document).ready(() => {
|
|||
return;
|
||||
}
|
||||
|
||||
/* If we come from next page */
|
||||
if (window.location.hash === '#prev') {
|
||||
cardIndex = cardNumber - 1;
|
||||
card = $('ul.data > li')[cardIndex];
|
||||
}
|
||||
|
||||
/* Focus current card */
|
||||
toggleFocus(card);
|
||||
|
||||
|
@ -47,7 +46,7 @@ $(document).ready(() => {
|
|||
if (cardIndex >= 0 && cardIndex < cardNumber - 1) {
|
||||
toggleFocus(card);
|
||||
cardIndex += 1;
|
||||
card = $('ul.data > li')[cardIndex];
|
||||
card = cards[cardIndex];
|
||||
toggleFocus(card);
|
||||
return;
|
||||
}
|
||||
|
@ -61,7 +60,7 @@ $(document).ready(() => {
|
|||
if (cardIndex > 0 && cardIndex < cardNumber) {
|
||||
toggleFocus(card);
|
||||
cardIndex -= 1;
|
||||
card = $('ul.data > li')[cardIndex];
|
||||
card = cards[cardIndex];
|
||||
toggleFocus(card);
|
||||
return;
|
||||
}
|
||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue