diff options
author | Robin Appelman <icewind@owncloud.com> | 2012-10-28 12:47:33 +0100 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2012-10-28 12:47:42 +0100 |
commit | fe6b987b3d48a5fc9bab8f4bfdccb99e9605f07a (patch) | |
tree | 78b3967e6d4085fb6d4ea7e6c6508fec4beef911 /apps/files/js/files.js | |
parent | d9ef6da2e49de52a694f1c7684624e68e4de6a21 (diff) | |
download | nextcloud-server-fe6b987b3d48a5fc9bab8f4bfdccb99e9605f07a.tar.gz nextcloud-server-fe6b987b3d48a5fc9bab8f4bfdccb99e9605f07a.zip |
use css to show/hide fileactions
Diffstat (limited to 'apps/files/js/files.js')
-rw-r--r-- | apps/files/js/files.js | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 549204e8572..2d9ccba424a 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -62,14 +62,6 @@ $(document).ready(function() { return false; }); - // Sets the file-action buttons behaviour : - $('tr').live('mouseenter',function(event) { - FileActions.display($(this).children('td.filename')); - }); - $('tr').live('mouseleave',function(event) { - FileActions.hide(); - }); - var lastChecked; // Sets the file link behaviour : |