vitro/webapp/web/js/imageUpload/imageUploadUtils.js

14 lines
300 B
JavaScript
Raw Normal View History

/* $This file is distributed under the terms of the license in /doc/license.txt$ */
$(document).ready(function(){
2010-07-13 18:08:25 +00:00
// Confirmation alert for photo deletion
$('a.thumbnail').click(function(){
2010-07-13 15:10:21 +00:00
var answer = confirm('Are you sure you want to delete your photo?');
return answer;
});
});