Browse Source

add missing var

tags/v10.0RC1
Robin Appelman 8 years ago
parent
commit
31ea10b04e
No account linked to committer's email address
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      apps/files_external/js/rollingqueue.js

+ 2
- 2
apps/files_external/js/rollingqueue.js View File

@@ -70,7 +70,7 @@ var RollingQueue = function (functionList, queueWindow, callback) {
throw "functionList must be an array";
}

for (i = 0; i < this.queueWindow; i++) {
for (var i = 0; i < this.queueWindow; i++) {
this.launchNext();
}
};
@@ -134,4 +134,4 @@ if (!OCA.External.StatusManager) {

OCA.External.StatusManager.RollingQueue = RollingQueue;

})();
})();

Loading…
Cancel
Save