diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/Resources/static/themes/material/js/shortcuts/main.js | 5 | ||||
-rw-r--r-- | app/config/config.yml | 1 |
2 files changed, 6 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 0a2d2a69..41499478 100644 --- a/app/Resources/static/themes/material/js/shortcuts/main.js +++ b/app/Resources/static/themes/material/js/shortcuts/main.js | |||
@@ -23,6 +23,11 @@ $(document).ready(() => { | |||
23 | return; | 23 | return; |
24 | } | 24 | } |
25 | 25 | ||
26 | /* Show nothing on login/register page */ | ||
27 | if ($('#username').length > 0 || $('#fos_user_registration_form_username').length > 0) { | ||
28 | return; | ||
29 | } | ||
30 | |||
26 | /* Focus current card */ | 31 | /* Focus current card */ |
27 | toggleFocus(card); | 32 | toggleFocus(card); |
28 | 33 | ||
diff --git a/app/config/config.yml b/app/config/config.yml index 4f4fb900..451809d6 100644 --- a/app/config/config.yml +++ b/app/config/config.yml | |||
@@ -55,6 +55,7 @@ wallabag_core: | |||
55 | list_mode: 0 | 55 | list_mode: 0 |
56 | fetching_error_message: | | 56 | fetching_error_message: | |
57 | wallabag can't retrieve contents for this article. Please <a href="http://doc.wallabag.org/en/master/user/errors_during_fetching.html#how-can-i-help-to-fix-that">troubleshoot this issue</a>. | 57 | wallabag can't retrieve contents for this article. Please <a href="http://doc.wallabag.org/en/master/user/errors_during_fetching.html#how-can-i-help-to-fix-that">troubleshoot this issue</a>. |
58 | api_limit_mass_actions: 10 | ||
58 | 59 | ||
59 | wallabag_user: | 60 | wallabag_user: |
60 | registration_enabled: "%fosuser_registration%" | 61 | registration_enabled: "%fosuser_registration%" |