1
0
Fork 0
mirror of https://github.com/futurepress/epub.js.git synced 2025-10-04 15:09:16 +02:00

Fixed reference to renderer when destroying the book (should be "renderer", not "render").

This commit is contained in:
jessiehernandez 2015-05-18 15:20:10 +08:00
parent e0f7315c57
commit 58e60a7d38

View file

@ -1171,7 +1171,7 @@ EPUBJS.Book.prototype.destroy = function() {
this.unload(); this.unload();
if(this.render) this.render.remove(); if(this.renderer) this.renderer.remove();
}; };