do not alert() on img upload/edit
This commit is contained in:
parent
5abd2f7bed
commit
69ff12bcdb
@ -108,7 +108,7 @@
|
|||||||
})
|
})
|
||||||
if(!res_img.ok){
|
if(!res_img.ok){
|
||||||
const item = await res_img.json();
|
const item = await res_img.json();
|
||||||
alert(item.message)
|
//alert(item.message)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
@ -129,7 +129,7 @@
|
|||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
const item = await res.json();
|
const item = await res.json();
|
||||||
alert(item.message)
|
// alert(item.message)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
async function doEdit() {
|
async function doEdit() {
|
||||||
@ -153,7 +153,7 @@
|
|||||||
})
|
})
|
||||||
if(!res.ok){
|
if(!res.ok){
|
||||||
const item = await res.json();
|
const item = await res.json();
|
||||||
alert(item.message)
|
// alert(item.message)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
async function upload_img(){
|
async function upload_img(){
|
||||||
@ -172,7 +172,7 @@
|
|||||||
});
|
});
|
||||||
if(!res.ok){
|
if(!res.ok){
|
||||||
const item = await res.json();
|
const item = await res.json();
|
||||||
alert(item.message)
|
// alert(item.message)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
delete_img()
|
delete_img()
|
||||||
@ -195,7 +195,7 @@
|
|||||||
})
|
})
|
||||||
if(!res_img.ok){
|
if(!res_img.ok){
|
||||||
const item = await res_img.json();
|
const item = await res_img.json();
|
||||||
alert(item.message)
|
//alert(item.message)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -232,7 +232,7 @@
|
|||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
const item = await res.json()
|
const item = await res.json()
|
||||||
alert(item.message)
|
//alert(item.message)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
Loading…
Reference in New Issue
Block a user