SHOW:
|
|
- or go back to the newest paste.
| 1 | $("a.remove").click(function(e) {
| |
| 2 | e.preventDefault(); | |
| 3 | - | var link = $(this).attr('href');
|
| 3 | + | bootbox.confirm("Really delete?", $.proxy(function(confirmed) {
|
| 4 | - | bootbox.confirm("Really delete?", function(confirmed) {
|
| 4 | + | if (confirmed) $(this).netteAjax(e); |
| 5 | - | if(confirmed) {
|
| 5 | + | }, this)); |
| 6 | - | $.nette.ajax(link); |
| 6 | + |