qa: add missing semicolon

This commit is contained in:
Manuel Schmid 2024-04-07 18:26:14 +02:00
parent ef0a1c95ad
commit 42e301af6d
No known key found for this signature in database
GPG Key ID: 32C4F7569B40B84B
1 changed files with 3 additions and 3 deletions

View File

@ -128,8 +128,8 @@ var onAppend = function(elem, f) {
if (m.addedNodes.length) {
f(m.addedNodes);
}
})
})
});
});
observer.observe(elem, {childList: true});
}
@ -156,7 +156,7 @@ addObserverIfDesiredNodeAvailable(".toast-wrap", function(added) {
document.getElementById("stop_button").classList.add("hidden");
});
}
})
});
});
/**