diff options
author | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-08-12 11:55:11 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-08-12 11:55:11 +0200 |
commit | 02824cabfed9ff13501858e1bb674f027526858f (patch) | |
tree | fabeea4a1296e041487538c2bd0e8d883a5f66f5 | |
parent | f62b31515937f2687f7543c5c6286252c5812e6d (diff) | |
download | nextcloud-server-02824cabfed9ff13501858e1bb674f027526858f.tar.gz nextcloud-server-02824cabfed9ff13501858e1bb674f027526858f.zip |
removed downloading as fallback action when file type can not be opened
-rw-r--r-- | files/js/fileactions.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/js/fileactions.js b/files/js/fileactions.js index 744ffd8cfed..1ba265142be 100644 --- a/files/js/fileactions.js +++ b/files/js/fileactions.js @@ -128,7 +128,7 @@ FileActions.register('all','Rename',OC.imagePath('core','actions/rename'),functi FileList.rename(filename); }); -FileActions.setDefault('all','Download'); +//FileActions.setDefault('all','Download'); FileActions.register('dir','Open','',function(filename){ window.location='index.php?dir='+$('#dir').val()+'/'+filename; |