Removed updateToast

This commit is contained in:
RemixDev 2020-04-13 19:58:11 +02:00
parent b587cf5072
commit e984c5464e
1 changed files with 0 additions and 4 deletions

View File

@ -51,10 +51,6 @@ socket.on("toast", (data)=>{
toast(data.msg, data.icon || null, data.dismiss !== undefined ? data.dismiss : true, data.id || null) toast(data.msg, data.icon || null, data.dismiss !== undefined ? data.dismiss : true, data.id || null)
}) })
socket.on("updateToast", (data)=>{
toast(data.msg, data.icon || null, data.dismiss !== undefined ? data.dismiss : true, data.id || null)
})
window.addEventListener('pywebviewready', function() { window.addEventListener('pywebviewready', function() {
$('#open_login_prompt').prop('disabled', false); $('#open_login_prompt').prop('disabled', false);
}) })