From a73dbb307347735db3bc076aaa5f92b3e90361fa Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Wed, 8 Apr 2015 14:10:38 +0200 Subject: delete conv items on the fly in background --- view/js/main.js | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'view/js') diff --git a/view/js/main.js b/view/js/main.js index 552dd959e..7479b17d3 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -818,6 +818,21 @@ function doprofilelike(ident, verb) { $.get('like/' + ident + '?verb=' + verb, function() { window.location.href=window.location.href; }); } + +function dropItem(ident) { + var object = '#thread-wrapper-' + ident; + var confirm = confirmDelete(); + if(confirm) { + $('body').css('cursor', 'wait'); + $(object).fadeTo('fast', 0.33, function () { + $.get('item/drop/' + ident).done(function() { + $(object).remove(); + $('body').css('cursor', 'auto'); + }); + }); + } +} + function dosubthread(ident) { unpause(); $('#like-rotator-' + ident.toString()).spin('tiny'); -- cgit v1.2.3