25 lines
No EOL
488 B
JavaScript
25 lines
No EOL
488 B
JavaScript
window.injectCSharp = async function (helper) {
|
|
window.CSHARP = helper
|
|
}
|
|
|
|
|
|
async function delay(t) {
|
|
return new Promise((resolve) => {
|
|
setTimeout(resolve, t);
|
|
});
|
|
}
|
|
|
|
async function removeElementById(id) {
|
|
document.getElementById(id)?.remove()
|
|
}
|
|
|
|
function scrollToId(id) {
|
|
const element = document.getElementById(id);
|
|
if (element instanceof HTMLElement) {
|
|
element.scrollIntoView({
|
|
behavior: "smooth",
|
|
block: "start",
|
|
inline: "nearest"
|
|
});
|
|
}
|
|
} |