1
0
Fork 0
mirror of https://github.com/futurepress/epub.js.git synced 2025-10-05 15:32:55 +02:00

removed equal in isElementVisible

This commit is contained in:
Fred Chasen 2013-07-30 08:42:46 -07:00
parent b5b43bd77a
commit 0e57823e86

View file

@ -680,7 +680,7 @@ EPUBJS.Renderer.prototype.isElementVisible = function(el){
left = el.getBoundingClientRect().left;
if( left >= 0 &&
left <= this.spreadWidth ) {
left < this.spreadWidth ) {
return true;
}
}