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

14 lines
259 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-11 07:24:52 +00:00
}