summaryrefslogtreecommitdiffstats
path: root/apps/files_trashbin/js
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-02-20 21:57:50 +0100
committerBernhard Posselt <nukeawhale@gmail.com>2013-02-20 21:57:50 +0100
commit3b9d9eea09bc7ccaad1445882f60ec2478bc34d0 (patch)
tree831ec9b6e59aa1186b31fda53e61ff3bff598e6e /apps/files_trashbin/js
parentfbfd54d2a057a0d9fb5c1e82bac6ed9936318a78 (diff)
downloadnextcloud-server-3b9d9eea09bc7ccaad1445882f60ec2478bc34d0.tar.gz
nextcloud-server-3b9d9eea09bc7ccaad1445882f60ec2478bc34d0.zip
replaced for in loops with normal enumerating loops to fix #1803
Diffstat (limited to 'apps/files_trashbin/js')
-rw-r--r--apps/files_trashbin/js/trash.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/files_trashbin/js/trash.js b/apps/files_trashbin/js/trash.js
index 6c810e4c2bd..23e5fb2fc93 100644
--- a/apps/files_trashbin/js/trash.js
+++ b/apps/files_trashbin/js/trash.js
@@ -88,7 +88,7 @@ $(document).ready(function() {
}
}
processSelection();
- });
+ });
$('.undelete').click('click',function(event) {
var spinner = '<img class="move2trash" title="'+t('files_trashbin', 'perform restore operation')+'" src="'+ OC.imagePath('core', 'loader.gif') +'"></a>';
@@ -96,7 +96,7 @@ $(document).ready(function() {
var fileslist=files.join(';');
var dirlisting=getSelectedFiles('dirlisting')[0];
- for (var i in files) {
+ for (var i=0; i<files.length; i++) {
var undeleteAction = $('tr').filterAttr('data-file',files[i]).children("td.date");
undeleteAction[0].innerHTML = undeleteAction[0].innerHTML+spinner;
}
@@ -111,7 +111,7 @@ $(document).ready(function() {
if (result.status != 'success') {
OC.dialogs.alert(result.data.message, 'Error');
}
- });
+ });
});