summaryrefslogtreecommitdiffstats
path: root/files/js/files.js
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@arthur-schiwon.de>2011-04-18 16:48:35 +0200
committerArthur Schiwon <blizzz@arthur-schiwon.de>2011-04-18 16:48:35 +0200
commit5a11e739b4fe3562df139798eac3566fa4809d60 (patch)
treefa371fc6366139ec85a8eeb3510272dd0e18d250 /files/js/files.js
parentca00d37a710673fa359daf1817da78787a137f01 (diff)
downloadnextcloud-server-5a11e739b4fe3562df139798eac3566fa4809d60.tar.gz
nextcloud-server-5a11e739b4fe3562df139798eac3566fa4809d60.zip
implemented deleting multiple files
Diffstat (limited to 'files/js/files.js')
-rw-r--r--files/js/files.js19
1 files changed, 19 insertions, 0 deletions
diff --git a/files/js/files.js b/files/js/files.js
index 4bf1c77fdbd..06d5dbf0328 100644
--- a/files/js/files.js
+++ b/files/js/files.js
@@ -113,6 +113,25 @@ $(document).ready(function() {
window.location='ajax/download.php?files='+files+'&dir='+dir;
return false;
});
+
+ $('.delete').click(function(event) {
+ var files='';
+ $('td.selection input:checkbox:checked').parent().parent().children('.filename').each(function(i,element){
+ files+=';'+$(element).text();
+ });
+ files=files.substr(1);//remove leading ;
+
+ //send the browser to the download location
+ $.ajax({
+ url: 'ajax/delete.php',
+ data: "dir="+$('#dir').val()+"&files="+files,
+ complete: function(data){
+ boolOperationFinished(data, false);
+ }
+ });
+
+ return false;
+ });
});
function uploadFinished() {