Browse Source

Fixed scope regression after latedef fixes.

pull/247/head
Simon Eisenmann 10 years ago
parent
commit
61b17ecdf8
  1. 2
      static/js/services/filedownload.js

2
static/js/services/filedownload.js

@ -176,7 +176,7 @@ define(["jquery", "underscore"], function($, _) { @@ -176,7 +176,7 @@ define(["jquery", "underscore"], function($, _) {
session.done(this);
return;
}
this.fileDownload.sendRequest(xfer, this.chunk++);
session.fileDownload.sendRequest(xfer, this.chunk++);
}, job);
//console.log("Starting new job", job, this.fragments, xfer.id);
xfer.e.on("sessionData", _.bind(this.handleData, this, job));

Loading…
Cancel
Save