vitro/webapp/web/js/imageUpload/confirmPhotoDeletion.js

10 lines
265 B
JavaScript
Raw Normal View History

2010-07-09 21:09:42 +00:00
/* $This file is distributed under the terms of the license in /doc/license.txt$ */
function delete_photo(passUrl) {
var delete_photo_answer = confirm ("Are you sure you want to delete your photo?");
if (delete_photo_answer){
window.open(passUrl);
}
}