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($, _) {
session.done(this); session.done(this);
return; return;
} }
this.fileDownload.sendRequest(xfer, this.chunk++); session.fileDownload.sendRequest(xfer, this.chunk++);
}, job); }, job);
//console.log("Starting new job", job, this.fragments, xfer.id); //console.log("Starting new job", job, this.fragments, xfer.id);
xfer.e.on("sessionData", _.bind(this.handleData, this, job)); xfer.e.on("sessionData", _.bind(this.handleData, this, job));

Loading…
Cancel
Save