mirror of
https://github.com/wallabag/wallabag.git
synced 2025-09-15 18:57:05 +00:00
Add support of mass action to tag entries
Closes #3118 Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
This commit is contained in:
parent
d510dc6c98
commit
08eb190c95
6 changed files with 88 additions and 2 deletions
|
@ -222,4 +222,10 @@ $(document).ready(() => {
|
|||
});
|
||||
});
|
||||
}
|
||||
$('form[name="form_mass_action"] input[name="tags"]').on('keydown', (e) => {
|
||||
if (e.key === 'Enter') {
|
||||
e.preventDefault();
|
||||
$('form[name="form_mass_action"] button[name="tag"]').trigger('click');
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue