Andrei Kashcha

Results 132 comments of Andrei Kashcha

Yes! Just noticed that too. Skimmed through the library code and noticed there are a few bugs related to eventing: 1. When `transform` is modified we need to fire `transform`...

Nothing at the moment. But where would zoom be zooming to? Just to the center?

how do you apply it?

Do you happen to have a jsbin to help us debug this?

Looks like something specific to they way this is rendered - can you please share a minimal jsbin/jsfiddle to reproduce?

You'd have to invert scale and apply it back to your markers. Something along these lines: ``` js var element = document.querySelector('.v-img-zoom--item') var pins = Array.from(document.querySelectorAll('.pin')); panzoom(element).on('transform', function(pz) { var...

Would just listening to `panstart` and `pan` event work for your use case? This seem equivalent: ``` js let left = panzoom(document.querySelector('.left img')) let right = panzoom(document.querySelector('.right img')); let lastX...

Sounds reasonable. Would you be able to send a pull request? Otherwise I'll try to implement this on my own schedule.

Do you have a jsbin or something to reproduce this? I'm curious how do you trigger the zoom operation

By circular graph - you mean a graph that has cycles?