2010-07-09 18:55:04 +00:00
|
|
|
/* $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
|
2010-07-13 20:19:38 +00:00
|
|
|
$('a.thumbnail').click(function(){
|
2010-07-13 15:10:21 +00:00
|
|
|
var answer = confirm('Are you sure you want to delete your photo?');
|
2010-07-12 15:59:37 +00:00
|
|
|
return answer;
|
|
|
|
});
|
2010-07-09 18:55:04 +00:00
|
|
|
|
2010-07-22 18:47:44 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
|