diff options
author | Björn Schießle <schiessle@owncloud.com> | 2013-01-18 10:23:31 +0100 |
---|---|---|
committer | Björn Schießle <schiessle@owncloud.com> | 2013-01-22 15:33:53 +0100 |
commit | dfab3d3d7f0e42fde5de8a5438a97d6d428977a7 (patch) | |
tree | cf813b87b62a751d775a73451687ff4d46d4e12e /apps/files/js/files.js | |
parent | 9bacb0e1792fac4a8f9728aec76692fd50fbcd64 (diff) | |
download | nextcloud-server-dfab3d3d7f0e42fde5de8a5438a97d6d428977a7.tar.gz nextcloud-server-dfab3d3d7f0e42fde5de8a5438a97d6d428977a7.zip |
call the trash bin view
Diffstat (limited to 'apps/files/js/files.js')
-rw-r--r-- | apps/files/js/files.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 9f5169fea58..795e065c0f3 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -100,9 +100,9 @@ $(document).ready(function() { return false; }); - // Show Trash bin + // Show trash bin $('#trash a').live('click', function() { - console.log("hello"); + window.location=OC.filePath('files_trashbin', '', 'index.php'); }); var lastChecked; |