diff options
| author | 2019-02-23 14:39:20 +0100 | |
|---|---|---|
| committer | 2019-02-23 14:39:20 +0100 | |
| commit | b869c2944a01c5060d05a093d5e0c797d48bb159 (patch) | |
| tree | 0eee3314fde4b848507f070d0aeba3dd745ccdb9 /app | |
| parent | c90c0361a840ef55addae2edb5b9476381f699a6 (diff) | |
JavaScript fixes + new navigation loop behaviour (#2255)
* Fixed user configuration 404
https://github.com/FreshRSS/FreshRSS/pull/2234#issuecomment-466561555
* Fixed "SPACE" shortcut bug
https://github.com/FreshRSS/FreshRSS/pull/2234#issuecomment-466626412
* Use next feed / previous feed when reaching last / first article
instead of looping
* Jump to next / previous category when reaching last / first feed
instead of looping
Diffstat (limited to 'app')
| -rw-r--r-- | app/views/user/manage.phtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/user/manage.phtml b/app/views/user/manage.phtml index 9d457f7a5..d0e5928ef 100644 --- a/app/views/user/manage.phtml +++ b/app/views/user/manage.phtml @@ -53,7 +53,7 @@ <div class="form-group"> <label class="group-name" for="current_user"><?php echo _t('admin.user.selected'); ?></label> <div class="group-controls"> - <select id="current_user" class="select-change" name="username"> + <select id="current_user" name="username"> <option selected="selected"> </option> <?php foreach (listUsers() as $username) { ?> <option value="<?php echo $username; ?>"><?php echo $username; ?></option> |
