mirror of
https://github.com/futurepress/epub.js.git
synced 2025-10-02 14:49:16 +02:00
16 lines
370 B
JavaScript
16 lines
370 B
JavaScript
module('Rendering');
|
|
/*
|
|
asyncTest("Render To", 1, function() {
|
|
|
|
var book = ePub("../books/moby-dick/OPS/package.opf");
|
|
var rendition = book.renderTo("qunit-fixture", {width:400, height:600});
|
|
var displayed = rendition.display(0);
|
|
|
|
displayed.then(function(){
|
|
equal( $( "iframe", "#qunit-fixture" ).length, 1, "iframe added successfully" );
|
|
start();
|
|
});
|
|
|
|
|
|
});
|
|
*/
|