book = ePub("/path/to/book/, { width: 320, height: 400 });
/*For iPad landscape layouts only */
@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation: landscape) {
#viewer iframe {
width: 460px;
height: 415px;
}
}
EPUBJS.Render.Iframe.prototype.setLeft = function(leftPos){
this.docEl.style["-webkit-transform"] = 'translate('+ (-leftPos) + 'px, 0)';
};