Blake Halloff
Results
3
comments of
Blake Halloff
For the cancel all handler, a while loop works better then using each. backbone.upload-manager.js ln 198: ``` // Add cancel all handler $('button#cancel-uploads-button', this.el).click(function(){ while (self.files.length) { self.files.at(0).cancel(); } });...
It essentially does the same thing as your original code, except that instead of using each it uses a while loop. The each loop didn't allow the cancel method to...