diff options
Diffstat (limited to 'app/Resources/static/themes/material')
-rw-r--r-- | app/Resources/static/themes/material/js/shortcuts/main.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/app/Resources/static/themes/material/js/shortcuts/main.js b/app/Resources/static/themes/material/js/shortcuts/main.js index ba396841..8514f71e 100644 --- a/app/Resources/static/themes/material/js/shortcuts/main.js +++ b/app/Resources/static/themes/material/js/shortcuts/main.js | |||
@@ -13,6 +13,11 @@ $(document).ready(() => { | |||
13 | let card = $('#content ul.data > li')[cardIndex]; | 13 | let card = $('#content ul.data > li')[cardIndex]; |
14 | const pagination = $('.pagination'); | 14 | const pagination = $('.pagination'); |
15 | 15 | ||
16 | /* Show nothing on quickstart */ | ||
17 | if ($('#content > div.quickstart').length > 0) { | ||
18 | return; | ||
19 | } | ||
20 | |||
16 | /* If we come from next page */ | 21 | /* If we come from next page */ |
17 | if (window.location.hash === '#prev') { | 22 | if (window.location.hash === '#prev') { |
18 | cardIndex = cardNumber - 1; | 23 | cardIndex = cardNumber - 1; |