Skip to content

Commit

Permalink
chore(release): 1.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
frederickfogerty committed Jul 9, 2018
1 parent 807c454 commit 70bd3ca
Show file tree
Hide file tree
Showing 7 changed files with 112 additions and 13 deletions.
105 changes: 105 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,111 @@

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.

<a name="1.2.2"></a>
## 1.2.2 (2018-07-09)



<a name="1.2.0"></a>
# 1.2.0 (2017-02-22)



<a name="1.1.0"></a>
# 1.1.0 (2016-12-13)



<a name="1.0.0"></a>
# 1.0.0 (2016-10-25)



<a name="0.4.1"></a>
## 0.4.1 (2016-10-14)



<a name="0.4.0"></a>
# 0.4.0 (2016-09-26)



<a name="0.3.4"></a>
## 0.3.4 (2016-08-04)



<a name="0.3.3"></a>
## 0.3.3 (2016-08-02)



<a name="0.3.2"></a>
## 0.3.2 (2016-07-15)



<a name="0.3.1"></a>
## 0.3.1 (2016-07-12)



<a name="0.3.0"></a>
# 0.3.0 (2016-05-27)



<a name="0.2.0"></a>
# 0.2.0 (2016-05-03)



<a name="0.1.8"></a>
## 0.1.8 (2016-05-02)



<a name="0.1.7"></a>
## 0.1.7 (2016-03-21)



<a name="0.1.6"></a>
## 0.1.6 (2016-03-03)



<a name="0.1.5"></a>
## 0.1.5 (2016-01-22)



<a name="0.1.4"></a>
## 0.1.4 (2016-01-17)



<a name="0.1.3"></a>
## 0.1.3 (2016-01-14)



<a name="0.1.2"></a>
## 0.1.2 (2016-01-08)



<a name="0.1.1"></a>
## 0.1.1 (2015-12-30)



<a name="0.1.0"></a>
# 0.1.0 (2015-12-29)



<a name="1.2.1"></a>
## 1.2.1 (2018-06-26)

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "drift",
"version": "1.2.1",
"version": "1.2.2",
"description": "Easily add \"zoom on hover\" functionality to your site's images. Lightweight, no-dependency JavaScript.",
"main": [
"dist/Drift.js",
Expand Down
10 changes: 2 additions & 8 deletions dist/Drift.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,10 +129,6 @@ exports.default = BoundingBox;
},{"./util/dom":6,"./util/throwIfMissing":7}],2:[function(require,module,exports){
"use strict";

Object.defineProperty(exports, "__esModule", {
value: true
});

var _createClass = function () {
function defineProperties(target, props) {
for (var i = 0; i < props.length; i++) {
Expand Down Expand Up @@ -167,15 +163,15 @@ function _classCallCheck(instance, Constructor) {
}
}

var Drift = function () {
module.exports = function () {
function Drift(triggerEl) {
var _this = this;

var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};

_classCallCheck(this, Drift);

this.VERSION = "1.2.0";
this.VERSION = "1.2.2";

this.destroy = function () {
_this.trigger._unbindEvents();
Expand Down Expand Up @@ -336,8 +332,6 @@ var Drift = function () {
return Drift;
}();

exports.default = Drift;

},{"./Trigger":3,"./ZoomPane":4,"./injectBaseStylesheet":5,"./util/dom":6}],3:[function(require,module,exports){
"use strict";

Expand Down
2 changes: 1 addition & 1 deletion dist/Drift.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "drift-zoom",
"version": "1.2.1",
"version": "1.2.2",
"description": "Easily add \"zoom on hover\" functionality to your site's images. Lightweight, no-dependency JavaScript.",
"contributors": [
"Frederick Fogerty <frederick.fogerty@gmail.com> (https://github.com/frederickfogerty)"
Expand Down
2 changes: 1 addition & 1 deletion src/js/Drift.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import Trigger from "./Trigger";
import ZoomPane from "./ZoomPane";

module.exports = class Drift {
VERSION = "1.2.0";
VERSION = "1.2.2";

constructor(triggerEl, options = {}) {
this.triggerEl = triggerEl;
Expand Down

0 comments on commit 70bd3ca

Please sign in to comment.