forked from MarseyWorld/MarseyWorld
9 lines
131 B
JavaScript
9 lines
131 B
JavaScript
|
function remove_app(t, url) {
|
||
|
postToast(t, url,
|
||
|
{},
|
||
|
() => {
|
||
|
t.parentElement.parentElement.parentElement.remove()
|
||
|
}
|
||
|
);
|
||
|
}
|