From 363d15fef1dafeeaabe097e6d327eef8df585173 Mon Sep 17 00:00:00 2001 From: chicpro Date: Thu, 21 Feb 2013 16:30:28 +0900 Subject: [PATCH] =?UTF-8?q?=EC=84=A0=ED=83=9D=EC=82=AD=EC=A0=9C=EC=8B=9C?= =?UTF-8?q?=20=EA=B2=BD=EA=B3=A0=EB=A9=94=EC=84=B8=EC=A7=80=20=EB=82=98?= =?UTF-8?q?=EC=98=A4=EB=8F=84=EB=A1=9D=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- adm/board_list.php | 6 ++++++ adm/boardgroup_list.php | 6 ++++++ adm/member_list.php | 6 ++++++ 3 files changed, 18 insertions(+) diff --git a/adm/board_list.php b/adm/board_list.php index 1ea132908..a4349be76 100644 --- a/adm/board_list.php +++ b/adm/board_list.php @@ -188,6 +188,12 @@ function fboardlist_submit(f) return false; } + if(document.pressed == "선택삭제") { + if(!confirm("선택한 자료를 정말 삭제하시겠습니까?")) { + return false; + } + } + return true; } diff --git a/adm/boardgroup_list.php b/adm/boardgroup_list.php index 52e19c6d9..c8f6b09cd 100644 --- a/adm/boardgroup_list.php +++ b/adm/boardgroup_list.php @@ -184,6 +184,12 @@ function fboardgrouplist_submit(f) return false; } + if(document.pressed == "선택삭제") { + if(!confirm("선택한 자료를 정말 삭제하시겠습니까?")) { + return false; + } + } + return true; } diff --git a/adm/member_list.php b/adm/member_list.php index e419ea602..aab02c9e5 100644 --- a/adm/member_list.php +++ b/adm/member_list.php @@ -227,6 +227,12 @@ function fmemberlist_submit(f) return false; } + if(document.pressed == "선택삭제") { + if(!confirm("선택한 자료를 정말 삭제하시겠습니까?")) { + return false; + } + } + return true; }