Releases: kingdido999/zooming
Releases Β· kingdido999/zooming
2.1.1
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')
1.5.0
1.4.2
1.4.1
1.4.0
Use the latest Rollup API to build bundles #52 with pkg.module support, which was suggested by @mahish .
1.3.1
Support pkg.module for rollup.
1.3.0
1.2.7
1.2.6
- Fix
onGrab
andonMove
event hooks. - Rewrite documentation page.