X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/ea1a90033eb53ae995f71943e57653fff30d4b8e..c5aff19e408ee9b1f9f8561549de7473a134e47f:/media/js/catalogue.js diff --git a/media/js/catalogue.js b/media/js/catalogue.js index d403a702b..ad5a7c2c8 100644 --- a/media/js/catalogue.js +++ b/media/js/catalogue.js @@ -101,6 +101,8 @@ hash.w.show(); }, onLoad: function(hash) { + var shelf_name = $('a.visit-shelf', this).html(); + $('form', hash.w).ajaxForm({ target: $('#user-shelves-window div.target'), success: function() { setTimeout(function() { $('#user-shelves-window').jqmHide() }, 1000) } @@ -115,10 +117,12 @@ }); $('.delete-shelf').click(function() { - $.post($(this).attr('href'), function(data, textStatus) { - $('#user-shelves-window div.target').html(data); - setTimeout(function() { $('#user-shelves-window').jqmHide() }, 1000); - }); + if (confirm('Czy na pewno usunąć półkę ' + shelf_name + '?')) { + $.post($(this).attr('href'), function(data, textStatus) { + $('#user-shelves-window div.target').html(data); + setTimeout(function() { $('#user-shelves-window').jqmHide() }, 1000); + }); + } return false; }); }