Merge pull request #702 from fs-webdev/master

Added small checks around code to make m2 sample work locally.
This commit is contained in:
Ian Gilman 2015-08-13 10:49:18 -07:00
commit 5a2733bbc1

View File

@ -464,18 +464,22 @@
var page = this.pages[this.pageIndex]; var page = this.pages[this.pageIndex];
var box = page.getBounds(); var box = page.getBounds();
this.highlight if (this.highlight) {
.style('opacity', 1) this.highlight
.attr("x", box.x) .style('opacity', 1)
.attr("width", box.width) .attr("x", box.x)
.attr("y", box.y) .attr("width", box.width)
.attr("height", box.height); .attr("y", box.y)
.attr("height", box.height);
}
}, },
// ---------- // ----------
updateHover: function(pageIndex) { updateHover: function(pageIndex) {
if (pageIndex === -1 || this.mode !== 'thumbs') { if (pageIndex === -1 || this.mode !== 'thumbs') {
this.hover.style('opacity', 0); if (this.hover) {
this.hover.style('opacity', 0);
}
this.$scrollCover.css({ this.$scrollCover.css({
'cursor': 'default' 'cursor': 'default'
}); });
@ -490,12 +494,14 @@
var page = this.pages[pageIndex]; var page = this.pages[pageIndex];
var box = page.getBounds(); var box = page.getBounds();
this.hover if (this.hover) {
.style('opacity', 0.3) this.hover
.attr("x", box.x) .style('opacity', 0.3)
.attr("width", box.width) .attr("x", box.x)
.attr("y", box.y) .attr("width", box.width)
.attr("height", box.height); .attr("y", box.y)
.attr("height", box.height);
}
}, },
// ---------- // ----------