From 107c648d6ff1696aaca0851b54916af4da883757 Mon Sep 17 00:00:00 2001 From: Eli Grey Date: Tue, 23 Jul 2013 18:45:19 -0400 Subject: [PATCH] Fixes #9 --- Blob.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Blob.js b/Blob.js index 6d48b39..2d7dc62 100644 --- a/Blob.js +++ b/Blob.js @@ -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";