NIHVIVO-1706: Added confirmation alert for photo deletion in image upload and individual templates

This commit is contained in:
mb863 2011-01-17 02:44:22 +00:00
parent 1d2b6b821f
commit b47f16cc94
2 changed files with 6 additions and 8 deletions

View file

@ -2,12 +2,10 @@
$(document).ready(function(){
// Confirmation alert for photo deletion
$('a.thumbnail').click(function(){
// Confirmation alert for photo deletion in image upload and individual templates
$('#photoUploadDefaultImage a.thumbnail,#share-contact a:eq(2)').click(function(){
//$('#share-contact a [title="delete this relationship"]').click(function(){
var answer = confirm('Are you sure you want to delete your photo?');
return answer;
});
});
});