Jack Moore
Jack Moore
Sorry, I'm not sure what this would be about. Easing probably wouldn't be called unless something was being animated, which I'm not seeing any of in the code you included....
Sorry, I don't know much about Vue. The `_ready` method is new to me, the underscore probably indicates it's a private method, not something that zoom would have intentionally called....
Sound like when the zoom package was required it did not extend the same jQuery object that you are referencing when you type `$('.zoom')`. Try replacing the `$` alias with...
It depends if you want the logo in a static location, or if you want it to get zoomed / panned. If it's just a static location, you should be...
@gibinealias Thanks for the pull request. I cannot merge this request because it is globally applied. You've taken away the user's ability to navigate around the page using the arrow...
@IvyGongoogle The magnify value is multiplied by the natural width and height of your image (not the actual displayed size). For example, if you have a 400px image displayed at...
I think the issue here is some script conflict. Open your developer console and run this: ``` $('#main_product_image').outerWidth(); ``` That should return a number, not a jQuery object. Looks like...
Hm... might could add additional checking to avoid this, but you really shouldn't ever be doing what you are currently doing. You are loading in an entire HTML document into...
Colorbox doesn't attempt to measure the size of iframe content, so you would have to specify a width and height. On Fri, Aug 21, 2015 at 1:31 PM, Dave Martin...
@engelfrost Ok, that makes sense. Zoom's behavior is started on mouseenter, and ends on mouseleave, but mouseenter has already happened before zoom has been assigned to the DOM element. I'm...