Added confirmation dialog before deleting an attachment
This commit is contained in:
+8
-6
@@ -47,9 +47,11 @@ function onReady()
|
||||
delete imReq;
|
||||
}
|
||||
|
||||
function deleteAtt(idx)
|
||||
{
|
||||
submitted = true;
|
||||
document.form1.smcmd.value='delatt'+idx;
|
||||
document.form1.submit();
|
||||
}
|
||||
function deleteAtt(idx, str)
|
||||
{
|
||||
if (confirm(str) == true) {
|
||||
submitted = true;
|
||||
document.form1.smcmd.value='delatt'+idx;
|
||||
document.form1.submit();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user