diff options
author | Michael Gapczynski <mtgap@owncloud.com> | 2012-10-28 16:01:50 -0400 |
---|---|---|
committer | Michael Gapczynski <mtgap@owncloud.com> | 2012-10-28 16:02:05 -0400 |
commit | 60e5054ae8bd5e85e6116e52a3de311c71b8b453 (patch) | |
tree | 19eef225eba53bc1184b699e752d26cd6e7183cf /apps/files/js/fileactions.js | |
parent | f3971e659b51dfe9e351274f63ce525a23806dab (diff) | |
download | nextcloud-server-60e5054ae8bd5e85e6116e52a3de311c71b8b453.tar.gz nextcloud-server-60e5054ae8bd5e85e6116e52a3de311c71b8b453.zip |
Fix shared status icons
Diffstat (limited to 'apps/files/js/fileactions.js')
-rw-r--r-- | apps/files/js/fileactions.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/js/fileactions.js b/apps/files/js/fileactions.js index 901c685ecb2..82d990bf780 100644 --- a/apps/files/js/fileactions.js +++ b/apps/files/js/fileactions.js @@ -80,7 +80,7 @@ var FileActions = { if (img.call) { img = img(file); } - var html = '<a href="#" class="action">'; + var html = '<a href="#" class="action" data-action="'+name+'">'; if (img) { html += '<img class ="svg" src="' + img + '"/> '; } |