mirror of
https://github.com/logos-co/open-law.git
synced 2025-02-19 02:06:40 +00:00
10 lines
243 B
TypeScript
10 lines
243 B
TypeScript
|
export function indeterminateInputs() {
|
||
|
const indeterminatedInputs = document.querySelectorAll(
|
||
|
'input[indeterminate=true]',
|
||
|
);
|
||
|
|
||
|
indeterminatedInputs.forEach((element: HTMLInputElement) => {
|
||
|
element.indeterminate = true;
|
||
|
});
|
||
|
}
|