13 lines
300 B
JavaScript
13 lines
300 B
JavaScript
/* $This file is distributed under the terms of the license in /doc/license.txt$ */
|
|
|
|
$(document).ready(function(){
|
|
|
|
// Confirmation alert for photo deletion
|
|
$('a.thumbnail').click(function(){
|
|
var answer = confirm('Are you sure you want to delete your photo?');
|
|
return answer;
|
|
});
|
|
|
|
});
|
|
|
|
|