vitro/webapp/web/js/imageUpload/imageUploadUtils.js
2010-07-13 15:10:21 +00:00

15 lines
No EOL
458 B
JavaScript

/* $This file is distributed under the terms of the license in /doc/license.txt$ */
$(document).ready(function(){
$("#photoUploadContainer").removeClass("hidden");
$('a.delete').click(function(){
// var answer = confirm('Are you sure you want to '+ jQuery(this).attr('title') +'?' );
var answer = confirm('Are you sure you want to delete your photo?');
// jQuery(this).attr('title') gets anchor title attribute
return answer;
});
});