This commit is contained in:
Eli Grey
2013-07-23 18:45:19 -04:00
parent 7246d68f23
commit 107c648d6f
+1 -1
View File
@@ -15,7 +15,7 @@
/*! @source http://purl.eligrey.com/github/Blob.js/blob/master/Blob.js */
if (typeof Blob !== "function" || typeof URL === "undefined")
if (typeof Blob === "function" && typeof webkitURL !== "undefined") var URL = webkitURL;
if (typeof Blob === "function" && typeof webkitURL !== "undefined") self.URL = webkitURL;
else var Blob = (function (view) {
"use strict";