Skip to content

Commit c28dd61

Browse files
committed
Build and bump
1 parent b8050b6 commit c28dd61

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "svg-pan-zoom",
3-
"version": "3.2.9",
3+
"version": "3.2.10",
44
"homepage": "https://github.com/ariutta/svg-pan-zoom",
55
"authors": [
66
"Andrea Leofreddi <[email protected]>",

dist/svg-pan-zoom.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// svg-pan-zoom v3.2.9
1+
// svg-pan-zoom v3.2.10
22
// https://github.com/ariutta/svg-pan-zoom
33
(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
44
var svgPanZoom = require('./svg-pan-zoom.js');
@@ -586,7 +586,9 @@ SvgPanZoom.prototype.setupHandlers = function() {
586586
this.eventListeners = {
587587
// Mouse down group
588588
mousedown: function(evt) {
589-
return that.handleMouseDown(evt, null);
589+
var result = that.handleMouseDown(evt, prevEvt);
590+
prevEvt = evt
591+
return result;
590592
}
591593
, touchstart: function(evt) {
592594
var result = that.handleMouseDown(evt, prevEvt);

0 commit comments

Comments
 (0)