1
0
Fork 0
mirror of https://github.com/futurepress/epub.js.git synced 2025-10-04 15:09:16 +02:00
epub.js/hooks/extensions/embedh.js
2013-06-04 22:56:02 -07:00

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();}