diff options
author | Mario Vavti <mario@mariovavti.com> | 2015-04-08 14:10:38 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2015-04-08 14:10:38 +0200 |
commit | a73dbb307347735db3bc076aaa5f92b3e90361fa (patch) | |
tree | 3c7f6b239f4d2f963db3eb62223918b44b78e844 | |
parent | b3f80c049f11b542402f62e390df2b352092f163 (diff) | |
download | volse-hubzilla-a73dbb307347735db3bc076aaa5f92b3e90361fa.tar.gz volse-hubzilla-a73dbb307347735db3bc076aaa5f92b3e90361fa.tar.bz2 volse-hubzilla-a73dbb307347735db3bc076aaa5f92b3e90361fa.zip |
delete conv items on the fly in background
-rw-r--r-- | view/js/main.js | 15 | ||||
-rwxr-xr-x | view/tpl/conv_item.tpl | 2 |
2 files changed, 16 insertions, 1 deletions
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'); diff --git a/view/tpl/conv_item.tpl b/view/tpl/conv_item.tpl index a575df554..7de0e05f9 100755 --- a/view/tpl/conv_item.tpl +++ b/view/tpl/conv_item.tpl @@ -123,7 +123,7 @@ {{/if}} {{if $item.drop.dropping}} <li role="presentation" class="divider"></li> - <li role="presentation"><a role="menuitem" href="item/drop/{{$item.id}}" onclick="return confirmDelete();" title="{{$item.drop.delete}}" ><i class="icon-trash"></i> {{$item.drop.delete}}</a></li> + <li role="presentation"><a role="menuitem" href="#" onclick="dropItem({{$item.id}}); return false;" title="{{$item.drop.delete}}" ><i class="icon-trash"></i> {{$item.drop.delete}}</a></li> {{/if}} </ul> </div> |