Skip to content

Commit

Permalink
Merge pull request #337 from jamietre/fix-mousedown
Browse files Browse the repository at this point in the history
Resolves #336 - fix mousedown event handler
  • Loading branch information
techfg authored Jan 19, 2021
2 parents 8d5c46d + ca2bee8 commit e68f197
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
5 changes: 4 additions & 1 deletion dist/jquery.imagemapster.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* imagemapster - v1.3.2-beta.0 - 2021-01-18
* imagemapster - v1.3.2-beta.0 - 2021-01-19
* https://github.com/jamietre/ImageMapster/
* Copyright (c) 2011 - 2021 James Treworgy
* License: MIT
Expand Down Expand Up @@ -2396,6 +2396,9 @@
me.clearEffects = function (e) {
clearEffects.call(this, me, e);
};
me.mousedown = function (e) {
mousedown.call(this, e);
};
};

m.MapData.prototype = {
Expand Down
4 changes: 2 additions & 2 deletions dist/jquery.imagemapster.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/jquery.imagemapster.min.js.map

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions src/mapdata.js
Original file line number Diff line number Diff line change
Expand Up @@ -368,6 +368,9 @@
me.clearEffects = function (e) {
clearEffects.call(this, me, e);
};
me.mousedown = function (e) {
mousedown.call(this, e);
};
};

m.MapData.prototype = {
Expand Down

0 comments on commit e68f197

Please sign in to comment.