forked from wallabag/wallabag
Merge pull request #5838 from wallabag/feat/mass-action-tag
Add support of mass action to tag entries
This commit is contained in:
@ -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');
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user