diff options
author | Michael Gapczynski <mtgap@owncloud.com> | 2012-07-27 21:28:25 -0400 |
---|---|---|
committer | Michael Gapczynski <mtgap@owncloud.com> | 2012-07-27 21:28:41 -0400 |
commit | e02d8d7f7e3c1958e28ddaf9b388fc062ff35a8c (patch) | |
tree | df4584d837570cb821d97866de1ed57f58e26c43 /apps | |
parent | fa4052d6f1385647b15aee84456f7ec7484bb04f (diff) | |
download | nextcloud-server-e02d8d7f7e3c1958e28ddaf9b388fc062ff35a8c.tar.gz nextcloud-server-e02d8d7f7e3c1958e28ddaf9b388fc062ff35a8c.zip |
Remove delete tipsy if file is deleted, fixes bug oc-958
Diffstat (limited to 'apps')
-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){ |