1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-19 22:58:07 +02:00

Merge pull request #3996 from Hengjie/master

Fix Blob creation in Safari 7.0
This commit is contained in:
Brendan Dahl 2013-12-05 10:59:48 -08:00
commit d3b5aa3236

View file

@ -1092,7 +1092,7 @@ var StatTimer = (function StatTimerClosure() {
})();
PDFJS.createBlob = function createBlob(data, contentType) {
if (typeof Blob === 'function')
if (typeof Blob !== 'undefined')
return new Blob([data], { type: contentType });
// Blob builder is deprecated in FF14 and removed in FF18.
var bb = new MozBlobBuilder();