remove jquery deletion
jquery deletion was deleting the wrong image if there were multiple delete buttons on one page (eg, on the report image page); also it stands out awkwardly being the only bit of jquery UI on the site. Moving to jquery UI across the site might happen later, but for now I just want to get a release out...
This commit is contained in:
@ -1,31 +1,6 @@
|
||||
|
||||
// Adding jQuery ui stuff
|
||||
$(document).ready(function() {
|
||||
|
||||
var $confirm = $('<div id="dialog-confirm"></div>')
|
||||
.html('<p><span class="ui-icon ui-icon-alert" style="float:left; margin:0 7px 20px 0;"></span>This image will be permanently deleted and cannot be recovered. Are you sure?</p>')
|
||||
.dialog({
|
||||
resizable: false,
|
||||
height:220,
|
||||
modal: true,
|
||||
autoOpen: false,
|
||||
title: 'Delete Image?',
|
||||
buttons: {
|
||||
"Delete Image": function() {
|
||||
$( this ).dialog( "close" );
|
||||
$('form#delete_image').submit();
|
||||
},
|
||||
Cancel: function() {
|
||||
$( this ).dialog( "close" );
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
$('form#delete_image #delete_image_submit').click(function(e){
|
||||
e.preventDefault();
|
||||
$confirm.dialog('open');
|
||||
});
|
||||
|
||||
$("time").timeago();
|
||||
|
||||
$('.autocomplete_tags').autocomplete(base_href + '/api/internal/tag_list/complete', {
|
||||
|
Reference in New Issue
Block a user