diff options
author | Erik Sargent <esthepiking@gmail.com> | 2012-11-28 09:55:38 -0700 |
---|---|---|
committer | Erik Sargent <esthepiking@gmail.com> | 2012-11-28 09:55:38 -0700 |
commit | 0c6b53c25e29ff05f843ab1d62228411ba6a777c (patch) | |
tree | 50b15475bf2337137c8e69d83ebcd80d0df94638 /apps | |
parent | e1478117b14c0057adaf3dbca5e0119e365c7c59 (diff) | |
download | nextcloud-server-0c6b53c25e29ff05f843ab1d62228411ba6a777c.tar.gz nextcloud-server-0c6b53c25e29ff05f843ab1d62228411ba6a777c.zip |
no message
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/index.php | 2 | ||||
-rw-r--r-- | apps/files/js/files.js | 2 | ||||
-rw-r--r-- | apps/files/js/keyboardshortcuts.js | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/apps/files/index.php b/apps/files/index.php index a0a70e3f4b3..c45fe60e4f7 100644 --- a/apps/files/index.php +++ b/apps/files/index.php @@ -31,7 +31,7 @@ OCP\Util::addscript( 'files', 'jquery.fileupload' ); OCP\Util::addscript( 'files', 'files' ); OCP\Util::addscript( 'files', 'filelist' ); OCP\Util::addscript( 'files', 'fileactions' ); -OCP\Util::addscript( 'files', 'keyboardshortcuts' ); +OCP\Util::addscript( 'files', 'keyboardshortcuts' ); if(!isset($_SESSION['timezone'])) { OCP\Util::addscript( 'files', 'timezone' ); } diff --git a/apps/files/js/files.js b/apps/files/js/files.js index c9142c38899..40fe5da8ead 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -40,7 +40,7 @@ Files={ } }; $(document).ready(function() { - Files.bindKeyboardShortcuts(document, jQuery); + 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'))); diff --git a/apps/files/js/keyboardshortcuts.js b/apps/files/js/keyboardshortcuts.js index 2a193f775ab..e53f44f3bf0 100644 --- a/apps/files/js/keyboardshortcuts.js +++ b/apps/files/js/keyboardshortcuts.js @@ -49,4 +49,4 @@ Files.bindKeyboardShortcuts = function (document, $){ keys.remove($.inArray(event.keyCode, keys)); }); -};
\ No newline at end of file +};
\ No newline at end of file |