diff options
author | Michael Gapczynski <mtgap@owncloud.com> | 2012-07-27 21:28:25 -0400 |
---|---|---|
committer | Michael Gapczynski <mtgap@owncloud.com> | 2012-07-30 10:07:19 -0400 |
commit | 519eb39422ec9ceb2f5d0023723c8e8a678c54af (patch) | |
tree | fa551c21d35ecf80c303d3f3978cebb39b0b59af | |
parent | 3e183b2eeab4ebd1e8df7531c22f1de6ec00cc97 (diff) | |
download | nextcloud-server-519eb39422ec9ceb2f5d0023723c8e8a678c54af.tar.gz nextcloud-server-519eb39422ec9ceb2f5d0023723c8e8a678c54af.zip |
Remove delete tipsy if file is deleted, fixes bug oc-958
-rw-r--r-- | apps/files/js/fileactions.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/files/js/fileactions.js b/apps/files/js/fileactions.js index 4dc05088eed..b6f4d0b0896 100644 --- a/apps/files/js/fileactions.js +++ b/apps/files/js/fileactions.js @@ -160,6 +160,7 @@ FileActions.register('all','Delete',function(){return OC.imagePath('core','actio }else{ FileList.do_delete(filename); } + $('.tipsy').remove(); }); FileActions.register('all','Rename',function(){return OC.imagePath('core','actions/rename')},function(filename){ |