선택삭제시 경고메세지 나오도록 수정
This commit is contained in:
@ -188,6 +188,12 @@ function fboardlist_submit(f)
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(document.pressed == "선택삭제") {
|
||||||
|
if(!confirm("선택한 자료를 정말 삭제하시겠습니까?")) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -184,6 +184,12 @@ function fboardgrouplist_submit(f)
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(document.pressed == "선택삭제") {
|
||||||
|
if(!confirm("선택한 자료를 정말 삭제하시겠습니까?")) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@ -227,6 +227,12 @@ function fmemberlist_submit(f)
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(document.pressed == "선택삭제") {
|
||||||
|
if(!confirm("선택한 자료를 정말 삭제하시겠습니까?")) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
Reference in New Issue
Block a user