Skip to content

Commit

Permalink
Release v2.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
AidasK committed Sep 4, 2014
1 parent cba2c42 commit d912713
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ng-flow",
"version": "2.5.0",
"version": "2.5.1",
"ignore": [
"**/.*",
"test",
Expand Down
6 changes: 3 additions & 3 deletions dist/ng-flow-standalone.js
Original file line number Diff line number Diff line change
Expand Up @@ -1260,7 +1260,7 @@
(this.fileObj.file.mozSlice ? 'mozSlice' :
(this.fileObj.file.webkitSlice ? 'webkitSlice' :
'slice')));
var bytes = this.fileObj.file[func](this.startByte, this.endByte);
var bytes = this.fileObj.file[func](this.startByte, this.endByte, this.fileObj.file.type);

// Set up request and listen for event
this.xhr = new XMLHttpRequest();
Expand Down Expand Up @@ -1389,7 +1389,7 @@
each(query, function (v, k) {
data.append(k, v);
});
data.append(this.flowObj.opts.fileParameterName, blob);
data.append(this.flowObj.opts.fileParameterName, blob, this.fileObj.file.name);
}

this.xhr.open(method, target, true);
Expand Down Expand Up @@ -1506,7 +1506,7 @@
* Library version
* @type {string}
*/
Flow.version = '2.6.1';
Flow.version = '2.6.2';

if ( typeof module === "object" && module && typeof module.exports === "object" ) {
// Expose Flow as module.exports in loaders that implement the Node
Expand Down
4 changes: 2 additions & 2 deletions dist/ng-flow-standalone.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/ng-flow.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ng-flow",
"version": "2.5.0",
"version": "2.5.1",
"description": "Flow.js html5 file upload extension on angular.js framework",
"scripts": {
"test": "grunt test"
Expand Down

0 comments on commit d912713

Please sign in to comment.