2.0.0
Improve UI Testing
Add end-to-end testing using cypress. #55
Breaking changes
- No longer listen to images with
data-action="zoom"
on initialization #68. - Remove
defaultZoomable
option.
All of the following will no longer make images zoomable:
-
Simply include a script.
-
Initialize a Zooming instance:
new Zooming()
- Initialize a Zooming instance with
defaultZoomable
:
new Zooming({
defaultZoomable: '.img-zoomable'
})
Instead, please ALWAYS call .listen()
on target images after creating a Zooming instance:
const zooming = new Zooming({
// options...
})
zooming.listen('.img-zoomable')