게시판 수정에 썸네일 삭제 기능 추가

This commit is contained in:
chicpro
2014-02-24 18:10:25 +09:00
parent f32379d492
commit 89b146a2c4
3 changed files with 62 additions and 1 deletions

View File

@ -63,4 +63,12 @@ function delete_confirm()
return true;
else
return false;
}
function delete_confirm2(msg)
{
if(confirm(msg))
return true;
else
return false;
}