Merge branch 'master' into enhance
This commit is contained in:
commit
fa74081960
1 changed files with 4 additions and 1 deletions
|
@ -127,7 +127,10 @@ function ComicBook(id, srcs, opts) {
|
||||||
|
|
||||||
var i = 0; // the current page counter for this method
|
var i = 0; // the current page counter for this method
|
||||||
|
|
||||||
$(canvas).after('<div class="control" id="status"><p></p></div>');
|
// show load status panel
|
||||||
|
if ($("#status").length === 0) {
|
||||||
|
$(canvas).after('<div class="control" id="status"><p></p></div>');
|
||||||
|
}
|
||||||
|
|
||||||
// I am using recursion instead of a forEach loop so that the next image is
|
// I am using recursion instead of a forEach loop so that the next image is
|
||||||
// only loaded when the previous one has completely finished
|
// only loaded when the previous one has completely finished
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue