Comparing version 2.0.0 to 2.1.0
{ | ||
"name": "exif-js", | ||
"version": "1.0.0", | ||
"version": "2.1.0", | ||
"homepage": "https://github.com/jseidelin/exif-js", | ||
@@ -5,0 +5,0 @@ "authors": [ |
@@ -355,3 +355,3 @@ (function() { | ||
if (img instanceof Image || img instanceof HTMLImageElement) { | ||
if (img.src) { | ||
if (/^data\:/i.test(img.src)) { // Data URI | ||
@@ -372,3 +372,3 @@ var arrayBuffer = base64ToArrayBuffer(img.src); | ||
http.onload = function() { | ||
if (http.status == "200") { | ||
if (this.status == 200 || this.status === 0) { | ||
handleBinaryFile(http.response); | ||
@@ -375,0 +375,0 @@ } else { |
{ | ||
"name": "exif-js", | ||
"version": "2.0.0", | ||
"version": "2.1.0", | ||
"description": "JavaScript library for reading EXIF image metadata", | ||
@@ -30,3 +30,7 @@ "main": "exif.js", | ||
"example" | ||
] | ||
], | ||
"devDependencies": { | ||
"bower": "^1.4.1", | ||
"mversion": "^1.10.0" | ||
} | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
973726
11
2