From: Arthur Schiwon Date: Mon, 18 Apr 2011 14:59:30 +0000 (+0200) Subject: implemented download single file from file menu X-Git-Tag: v3.0~267^2~558^2~45 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=4ae158bbe03e33ed4cf9b42af44ef7b7876a6fe2;p=nextcloud-server.git implemented download single file from file menu --- diff --git a/files/js/files.js b/files/js/files.js index 06d5dbf0328..f1cb200817b 100644 --- a/files/js/files.js +++ b/files/js/files.js @@ -49,6 +49,14 @@ $(document).ready(function() { } }); + // Download current file + $('#download_single_file').click(function() { + filename = $('#file_menu').parents('tr:first').find('.filename:first').children('a:first').text(); + window.location='ajax/download.php?files='+filename+'&dir='+$('#dir').val(); + $('#file_menu').slideToggle(250); + return false; + }); + // Delete current file $('#delete_single_file').click(function() { filename = $('#file_menu').parents('tr:first').find('.filename:first').children('a:first').text(); @@ -121,7 +129,6 @@ $(document).ready(function() { }); files=files.substr(1);//remove leading ; - //send the browser to the download location $.ajax({ url: 'ajax/delete.php', data: "dir="+$('#dir').val()+"&files="+files, diff --git a/files/templates/index.php b/files/templates/index.php index d38e771c2e1..f761f1f538d 100644 --- a/files/templates/index.php +++ b/files/templates/index.php @@ -38,7 +38,7 @@ name="file_upload_target" src="">