View difference between Paste ID: VC81J381 and 3H1pjwC5
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+