Skip to content

Commit

Permalink
progress fix for angular 1.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
danialfarid committed Dec 31, 2013
1 parent 1da122f commit 641f6a8
Show file tree
Hide file tree
Showing 12 changed files with 29 additions and 17 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "angularjs-file-upload",
"main": "angular-file-upload.min.js",
"version": "1.2.0",
"version": "1.2.1",
"homepage": "https://github.com/danialfarid/angular-file-upload",
"authors": [
"Danial Farid <danial.farid@gmail.com>"
Expand Down
2 changes: 1 addition & 1 deletion demo/war/js/angular-file-upload-html5-shim.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**!
* AngularJS file upload shim for angular XHR HTML5 browsers
* @author Danial <danial.farid@gmail.com>
* @version 1.2.0
* @version 1.2.1
*/
if (window.XMLHttpRequest) {
if (window.FormData) {
Expand Down
2 changes: 1 addition & 1 deletion demo/war/js/angular-file-upload-shim.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**!
* AngularJS file upload shim for HTML5 FormData
* @author Danial <danial.farid@gmail.com>
* @version 1.2.0
* @version 1.2.1
*/
(function() {

Expand Down
2 changes: 1 addition & 1 deletion demo/war/js/angular-file-upload.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**!
* AngularJS file upload/drop directive with http post and progress
* @author Danial <danial.farid@gmail.com>
* @version 1.2.0
* @version 1.2.1
*/
(function() {

Expand Down
8 changes: 6 additions & 2 deletions dist/angular-file-upload-html5-shim.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**!
* AngularJS file upload shim for angular XHR HTML5 browsers
* @author Danial <danial.farid@gmail.com>
* @version 1.2.0
* @version 1.2.1
*/
if (window.XMLHttpRequest) {
if (window.FormData) {
Expand All @@ -12,7 +12,11 @@ if (window.XMLHttpRequest) {
xhr.setRequestHeader = (function(orig) {
return function(header, value) {
if (header === '__setXHR_') {
value(xhr);
var val = value(xhr);
// fix for angular < 1.2.0
if (val instanceof Function) {
val(xhr);
}
} else {
orig.apply(xhr, arguments);
}
Expand Down
4 changes: 2 additions & 2 deletions dist/angular-file-upload-html5-shim.min.js

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

14 changes: 11 additions & 3 deletions dist/angular-file-upload-shim.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**!
* AngularJS file upload shim for HTML5 FormData
* @author Danial <danial.farid@gmail.com>
* @version 1.2.0
* @version 1.2.1
*/
(function() {

Expand All @@ -14,7 +14,11 @@ if (window.XMLHttpRequest) {
xhr.setRequestHeader = (function(orig) {
return function(header, value) {
if (header === '__setXHR_') {
value(xhr);
var val = value(xhr);
// fix for angular < 1.2.0
if (val instanceof Function) {
val(xhr);
}
} else {
orig.apply(xhr, arguments);
}
Expand Down Expand Up @@ -63,7 +67,11 @@ if (window.XMLHttpRequest) {
xhr.setRequestHeader = (function(orig) {
return function(header, value) {
if (header === '__setXHR_') {
value(xhr);
var val = value(xhr);
// fix for angular < 1.2.0
if (val instanceof Function) {
val(xhr);
}
} else {
orig.apply(xhr, arguments);
}
Expand Down
4 changes: 2 additions & 2 deletions dist/angular-file-upload-shim.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 dist/angular-file-upload.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**!
* AngularJS file upload/drop directive with http post and progress
* @author Danial <danial.farid@gmail.com>
* @version 1.2.0
* @version 1.2.1
*/
(function() {

Expand Down
2 changes: 1 addition & 1 deletion dist/angular-file-upload.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 nuget/Package.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<metadata>
<id>angular-file-upload</id>
<title>Angular file upload</title>
<version>1.2.0</version>
<version>1.2.1</version>
<authors>Danial Farid, Georgios Diamantopoulos (nuget package)</authors>
<owners>Danial Farid</owners>
<licenseUrl>https://github.com/danialfarid/angular-file-upload/blob/master/LICENSE</licenseUrl>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-file-upload",
"version": "1.2.0",
"version": "1.2.1",
"devDependencies": {
"grunt": "~0.4.1",
"grunt-contrib-uglify": "~0.2.7",
Expand Down

0 comments on commit 641f6a8

Please sign in to comment.