Lines 951-956
$(function() {
Link Here
|
951 |
}); |
951 |
}); |
952 |
} |
952 |
} |
953 |
confirmModal( message, title, yes_label, no_label, function( result ){ |
953 |
confirmModal( message, title, yes_label, no_label, function( result ){ |
|
|
954 |
$("#bootstrap-confirm-box-modal").remove(); |
954 |
if( result ){ |
955 |
if( result ){ |
955 |
if( selected_titles.size() == 1 ){ |
956 |
if( selected_titles.size() == 1 ){ |
956 |
$("#shelf_delete_biblionumber").val( biblionumber ); |
957 |
$("#shelf_delete_biblionumber").val( biblionumber ); |
Lines 1009-1014
$(function() {
Link Here
|
1009 |
message += "<p>" + _("This list is shared. Other users will lose access to it.") + "</p>"; |
1010 |
message += "<p>" + _("This list is shared. Other users will lose access to it.") + "</p>"; |
1010 |
} |
1011 |
} |
1011 |
confirmModal( message, _("Are you sure you want to delete this list?"), _("Yes, delete"), _("No, do not delete"), function( result ){ |
1012 |
confirmModal( message, _("Are you sure you want to delete this list?"), _("Yes, delete"), _("No, do not delete"), function( result ){ |
|
|
1013 |
$("#bootstrap-confirm-box-modal").remove(); |
1012 |
if( result ){ |
1014 |
if( result ){ |
1013 |
$("#deleteshelf" + shelf_number ).submit(); |
1015 |
$("#deleteshelf" + shelf_number ).submit(); |
1014 |
} |
1016 |
} |
Lines 1021-1026
$(function() {
Link Here
|
1021 |
var shelf_name = $(this).data("shelfname"); |
1023 |
var shelf_name = $(this).data("shelfname"); |
1022 |
var shelf_number = $(this).data("shelfnumber"); |
1024 |
var shelf_number = $(this).data("shelfnumber"); |
1023 |
confirmModal( shelf_name, _("Are you sure you want to remove sharing? You will no longer have access to the list."), _("Yes, remove sharing"), _("No, do not remove sharing"), function( result ){ |
1025 |
confirmModal( shelf_name, _("Are you sure you want to remove sharing? You will no longer have access to the list."), _("Yes, remove sharing"), _("No, do not remove sharing"), function( result ){ |
|
|
1026 |
$("#bootstrap-confirm-box-modal").remove(); |
1024 |
if( result ){ |
1027 |
if( result ){ |
1025 |
$("#unshare" + shelf_number ).submit(); |
1028 |
$("#unshare" + shelf_number ).submit(); |
1026 |
} |
1029 |
} |