1
0
Fork 0
mirror of https://github.com/futurepress/epub.js.git synced 2025-10-04 15:09:16 +02:00

fix: missing comma

This commit is contained in:
frankdelange 2017-02-20 23:43:18 +01:00
parent cc426ec7a6
commit e5d1cd0d4e

View file

@ -13,7 +13,7 @@ EPUBJS.Render.Iframe = function() {
//-- Build up any html needed //-- Build up any html needed
EPUBJS.Render.Iframe.prototype.create = function(){ EPUBJS.Render.Iframe.prototype.create = function(){
this.element = document.createElement('div'); this.element = document.createElement('div');
this.element.id = "epubjs-view:" + this.id this.element.id = "epubjs-view:" + this.id;
this.isMobile = navigator.userAgent.match(/(iPad|iPhone|iPod|Mobile|Android)/g); this.isMobile = navigator.userAgent.match(/(iPad|iPhone|iPod|Mobile|Android)/g);
this.transform = EPUBJS.core.prefixed('transform'); this.transform = EPUBJS.core.prefixed('transform');