mirror of
https://github.com/wallabag/wallabag.git
synced 2024-12-30 03:20:31 +00:00
Fix keyboard navigation on quickstart view
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
parent
c930992348
commit
10a1ffae53
5 changed files with 25 additions and 278 deletions
|
@ -13,6 +13,11 @@ $(document).ready(() => {
|
|||
let card = $('#content ul.data > li')[cardIndex];
|
||||
const pagination = $('.pagination');
|
||||
|
||||
/* Show nothing on quickstart */
|
||||
if ($('#content > div.quickstart').length > 0) {
|
||||
return;
|
||||
}
|
||||
|
||||
/* If we come from next page */
|
||||
if (window.location.hash === '#prev') {
|
||||
cardIndex = cardNumber - 1;
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue