1
0
Fork 0
mirror of https://github.com/futurepress/epub.js.git synced 2025-10-03 14:59:18 +02:00

Remove console.log in rendition

This commit is contained in:
Fred Chasen 2017-03-27 11:37:27 -04:00
parent cde11e83d0
commit 6b01c94d0c
2 changed files with 1 additions and 2 deletions

View file

@ -1,6 +1,6 @@
{ {
"name": "epubjs", "name": "epubjs",
"version": "0.3.21", "version": "0.3.22",
"description": "Parse and Render Epubs", "description": "Parse and Render Epubs",
"main": "lib/index.js", "main": "lib/index.js",
"jsnext:main": "src/index.js", "jsnext:main": "src/index.js",

View file

@ -177,7 +177,6 @@ class Rendition {
// Listen for scroll changes // Listen for scroll changes
this.manager.on("scroll", this.reportLocation.bind(this)); this.manager.on("scroll", this.reportLocation.bind(this));
this.manager.on("scroll", () => console.log("scrolled"));
// Trigger that rendering has started // Trigger that rendering has started
this.emit("started"); this.emit("started");