Neighbourhood.omg.lol/wwwroot/js/csharp.js

25 lines
488 B
JavaScript
Raw Normal View History

2024-06-11 07:24:52 +00:00
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()
2024-06-20 04:25:48 +00:00
}
function scrollToId(id) {
const element = document.getElementById(id);
if (element instanceof HTMLElement) {
element.scrollIntoView({
behavior: "smooth",
block: "start",
inline: "nearest"
});
}
2024-06-11 07:24:52 +00:00
}