vitro/webapp/web/js/imageUpload/imageUploadUtils.js
2010-07-13 18:08:25 +00:00

14 lines
No EOL
411 B
JavaScript

/* $This file is distributed under the terms of the license in /doc/license.txt$ */
$(document).ready(function(){
// upload form is hidden by default; use JavaScript to reveal
$("#photoUploadContainer").removeClass("hidden");
// Confirmation alert for photo deletion
$('a.delete').click(function(){
var answer = confirm('Are you sure you want to delete your photo?');
return answer;
});
});