2010-07-09 18:55:04 +00:00
|
|
|
/* $This file is distributed under the terms of the license in /doc/license.txt$ */
|
|
|
|
|
|
|
|
$(document).ready(function(){
|
|
|
|
|
2011-01-17 14:58:37 +00:00
|
|
|
// Confirmation alert for photo deletion in image upload and individual templates
|
2011-01-17 15:47:50 +00:00
|
|
|
$('#photoUploadDefaultImage a.thumbnail,#share-contact a[title="delete this relationship"]').click(function(){
|
|
|
|
var answer = confirm('Are you sure you want to delete your photo?');
|
|
|
|
return answer;
|
2010-07-12 15:59:37 +00:00
|
|
|
});
|
2011-01-17 14:58:37 +00:00
|
|
|
});
|