From 076c2c4cbd06a4957c9a59bde6230f0669c7d459 Mon Sep 17 00:00:00 2001 From: Adam Shaw Date: Mon, 25 Aug 2014 22:28:28 -0700 Subject: [PATCH] bug where eventClick return value was being ignored --- src/common/Grid.events.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/Grid.events.js b/src/common/Grid.events.js index 7d9809f..1ccad2c 100644 --- a/src/common/Grid.events.js +++ b/src/common/Grid.events.js @@ -136,7 +136,7 @@ $.extend(Grid.prototype, { // only call the handlers if there is not a drag/resize in progress if (seg && !_this.isDraggingSeg && !_this.isResizingSeg) { - func.call(this, seg, ev); // `this` will be the event element + return func.call(this, seg, ev); // `this` will be the event element } }); }