Update epub reader and pdf reader

Update epub reader and use pdf.js tu view pdf files
This commit is contained in:
wuqi
2016-07-09 16:54:13 +08:00
parent 82574d2118
commit 9a8d795eff
234 changed files with 86778 additions and 142 deletions

View File

@ -0,0 +1,14 @@
EPUBJS.Hooks.register("beforeChapterDisplay").highlight = function(callback, renderer){
// EPUBJS.core.addScript("js/libs/jquery.highlight.js", null, renderer.doc.head);
var s = document.createElement("style");
s.innerHTML =".highlight { background: yellow; font-weight: normal; }";
renderer.render.document.head.appendChild(s);
if(callback) callback();
}