diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2012-12-06 13:42:14 -0800 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2012-12-06 13:42:14 -0800 |
commit | 380db4a29e6ef931bfbcc48ffecce3b25199405d (patch) | |
tree | 06664307a287b46441c504a494bf342a2737df24 /apps/files/js/files.js | |
parent | 5b04db9b225fd1ed4ad39bef3b77d5fe46b933df (diff) | |
parent | f0213735fcd1e5bb3d2323e9df3824878072e37d (diff) | |
download | nextcloud-server-380db4a29e6ef931bfbcc48ffecce3b25199405d.tar.gz nextcloud-server-380db4a29e6ef931bfbcc48ffecce3b25199405d.zip |
Merge pull request #640 from esthepiking/master
Keyboard Shortcuts
Diffstat (limited to 'apps/files/js/files.js')
-rw-r--r-- | apps/files/js/files.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/files/js/files.js b/apps/files/js/files.js index d29732f9b3f..886bbfbb18f 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -40,6 +40,7 @@ Files={ } }; $(document).ready(function() { + Files.bindKeyboardShortcuts(document, jQuery); $('#fileList tr').each(function(){ //little hack to set unescape filenames in attribute $(this).attr('data-file',decodeURIComponent($(this).attr('data-file'))); |