Skip to content

Commit bdd339d

Browse files
author
Sherwin H
committed
chore(release): 1.3.5
1 parent d1ea511 commit bdd339d

File tree

8 files changed

+16
-8
lines changed

8 files changed

+16
-8
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
1-
# Change Log
1+
# Changelog
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
### [1.3.5](https://github.com/imgix/drift/compare/v1.3.4...v1.3.5) (2019-08-02)
6+
7+
8+
### Bug Fixes
9+
10+
* prevent zoom on mobile when handleTouch is set to false ([#293](https://github.com/imgix/drift/issues/293)) ([d1ea511](https://github.com/imgix/drift/commit/d1ea511))
11+
* remove lingering DOM elements on destroy() ([#291](https://github.com/imgix/drift/issues/291)) ([e217752](https://github.com/imgix/drift/commit/e217752))
12+
513
<a name="1.3.4"></a>
614
## [1.3.4](https://github.com/imgix/drift/compare/v1.3.3...v1.3.4) (2019-04-06)
715

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "drift",
3-
"version": "1.3.4",
3+
"version": "1.3.5",
44
"description": "Easily add \"zoom on hover\" functionality to your site's images. Lightweight, no-dependency JavaScript.",
55
"main": [
66
"dist/Drift.min.js",

dist/Drift.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/Drift.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/Drift.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "drift-zoom",
3-
"version": "1.3.4",
3+
"version": "1.3.5",
44
"description": "Easily add \"zoom on hover\" functionality to your site's images. Lightweight, no-dependency JavaScript.",
55
"contributors": [
66
"Frederick Fogerty <[email protected]> (https://github.com/frederickfogerty)",

src/js/Drift.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import ZoomPane from "./ZoomPane";
66

77
export default class Drift {
88
constructor(triggerEl, options = {}) {
9-
this.VERSION = "1.3.4";
9+
this.VERSION = "1.3.5";
1010
this.triggerEl = triggerEl;
1111

1212
this.destroy = this.destroy.bind(this);

0 commit comments

Comments
 (0)