gitea source for verification 2026-05-22
This commit is contained in:
9
web_src/js/features/oauth2-settings.ts
Normal file
9
web_src/js/features/oauth2-settings.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
import type {DOMEvent} from '../utils/dom.ts';
|
||||
|
||||
export function initOAuth2SettingsDisableCheckbox() {
|
||||
for (const el of document.querySelectorAll<HTMLInputElement>('.disable-setting')) {
|
||||
el.addEventListener('change', (e: DOMEvent<Event, HTMLInputElement>) => {
|
||||
document.querySelector(e.target.getAttribute('data-target')).classList.toggle('disabled', e.target.checked);
|
||||
});
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user