mirror of
https://github.com/futurepress/epub.js.git
synced 2025-10-04 15:09:16 +02:00
11 lines
No EOL
317 B
JavaScript
11 lines
No EOL
317 B
JavaScript
EPUBJS.Hooks.register("beforeChapterDisplay").example = function(callback, chapter){
|
|
|
|
|
|
var s = document.createElement("script");
|
|
s.type = 'text/javascript';
|
|
s.src ="https://test.hypothes.is/app/embed.js"
|
|
|
|
chapter.doc.body.appendChild(s);
|
|
|
|
//-- Continue to other hooks
|
|
if(callback) callback();} |