From d09dea2a6fda2dd520f980aa4177b6fc7cd44775 Mon Sep 17 00:00:00 2001 From: cwat-bfarka <> Date: Fri, 21 Nov 2014 09:56:15 +0100 Subject: [PATCH] fix issue #469 remove trailing comma to be more IE compliant --- src/jquery.draggable.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jquery.draggable.js b/src/jquery.draggable.js index d9b5d988..ef8730ea 100644 --- a/src/jquery.draggable.js +++ b/src/jquery.draggable.js @@ -110,7 +110,7 @@ this.pointer_events = { start: this.nsEvent('touchstart') + ' ' + this.nsEvent('mousedown'), move: this.nsEvent('touchmove') + ' ' + this.nsEvent('mousemove'), - end: this.nsEvent('touchend') + ' ' + this.nsEvent('mouseup'), + end: this.nsEvent('touchend') + ' ' + this.nsEvent('mouseup') }; this.$container.on(this.nsEvent('selectstart'),