mirror of
https://github.com/futurepress/epub.js.git
synced 2025-10-05 15:32:55 +02:00
Fixes Cannot read property 'createBlob' of undefined
error
This commit is contained in:
parent
a2c8ac6d94
commit
262477e938
1 changed files with 1 additions and 1 deletions
|
@ -264,7 +264,7 @@ export function createBlob(content, mime){
|
|||
export function createBlobUrl(content, mime){
|
||||
var _URL = window.URL || window.webkitURL || window.mozURL;
|
||||
var tempUrl;
|
||||
var blob = this.createBlob(content, mime);
|
||||
var blob = createBlob(content, mime);
|
||||
|
||||
tempUrl = _URL.createObjectURL(blob);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue