mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-22 09:37:17 +00:00
Ignore type errors
This commit is contained in:
parent
85a80ef084
commit
79e0154106
1 changed files with 2 additions and 0 deletions
|
|
@ -26,11 +26,13 @@ function deactivateId(id: string) {
|
|||
|
||||
function hoverPlButton(id: string, i: number) {
|
||||
const elements = document.querySelector(id)!.childNodes;
|
||||
// @ts-ignore
|
||||
elements[i]!.classList.add("hover");
|
||||
}
|
||||
|
||||
function unhoverPlButton(id: string, i: number) {
|
||||
const elements = document.querySelector(id)!.childNodes;
|
||||
// @ts-ignore
|
||||
elements[i]!.classList.remove("hover");
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue