implemented download single file from file menu

remotes/origin/stable
Arthur Schiwon 14 years ago
parent 5a11e739b4
commit 4ae158bbe0
  1. 9
      files/js/files.js
  2. 2
      files/templates/index.php

@ -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,

@ -38,7 +38,7 @@ name="file_upload_target" src=""></iframe></form>
<div id="file_menu">
<ul>
<li><a href="" title="">Download</a></li>
<li><a href="" title="" id="download_single_file">Download</a></li>
<li><a href="" title="">Share</a></li>
<li><a href="" title="" id="delete_single_file">Delete</a></li>
</ul>

Loading…
Cancel
Save