diff options
author | Bjoern Schiessle <schiessle@owncloud.com> | 2012-06-04 10:42:09 +0200 |
---|---|---|
committer | Bjoern Schiessle <schiessle@owncloud.com> | 2012-06-04 10:42:09 +0200 |
commit | 2d80c148ba8c1e83508a4c9e7318fa388740c9ff (patch) | |
tree | 82775a580260568c4578185e4ceb81f398affe27 /apps/files/js/files.js | |
parent | f3c1d1eded96e948b2ddc608de48778b62232231 (diff) | |
download | nextcloud-server-2d80c148ba8c1e83508a4c9e7318fa388740c9ff.tar.gz nextcloud-server-2d80c148ba8c1e83508a4c9e7318fa388740c9ff.zip |
Don't allow user to delete, rename and re-share the "Shared" directory
Diffstat (limited to 'apps/files/js/files.js')
-rw-r--r-- | apps/files/js/files.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 7d9c53eaa8e..7cd0f388a3c 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -56,7 +56,7 @@ $(document).ready(function() { // Sets the file-action buttons behaviour : $('tr').live('mouseenter',function(event) { - FileActions.display($(this).children('td.filename')); + FileActions.display($(this).children('td.filename'), $(this).attr('data-file'), $(this).attr('data-type')); }); $('tr').live('mouseleave',function(event) { FileActions.hide(); |