mirror of
https://gitcode.com/gitea/gitea.git
synced 2025-05-29 05:48:07 +08:00
Introduce eslint-plugin-no-jquery/no-event-shorthand (#24198)
https://github.com/go-gitea/gitea/pull/24098#issuecomment-1514010690 --------- Co-authored-by: silverwind <me@silverwind.io>
This commit is contained in:
@ -16,19 +16,19 @@ export function initAdminUserListSearchForm() {
|
||||
}
|
||||
}
|
||||
|
||||
$form.find(`input[type=radio]`).click(() => {
|
||||
$form.submit();
|
||||
$form.find(`input[type=radio]`).on('click', () => {
|
||||
$form.trigger('submit');
|
||||
return false;
|
||||
});
|
||||
|
||||
$form.find('.j-reset-status-filter').click(() => {
|
||||
$form.find('.j-reset-status-filter').on('click', () => {
|
||||
$form.find(`input[type=radio]`).each((_, e) => {
|
||||
const $e = $(e);
|
||||
if ($e.attr('name').startsWith('status_filter[')) {
|
||||
$e.prop('checked', false);
|
||||
}
|
||||
});
|
||||
$form.submit();
|
||||
$form.trigger('submit');
|
||||
return false;
|
||||
});
|
||||
}
|
||||
|
Reference in New Issue
Block a user