1
0
Fork 0
mirror of https://github.com/Yetangitu/owncloud-apps.git synced 2025-10-02 14:49:17 +02:00

OC8 port, 'should be compatible' with OC7 - please test...

Reader: ported to appframework, new version of epub.js
This commit is contained in:
frankdelange 2015-02-12 20:08:36 +01:00
parent ba221c1d61
commit c4d1ace999
50 changed files with 653 additions and 6064 deletions

View file

@ -1,14 +0,0 @@
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();
}