bug where eventClick return value was being ignored

This commit is contained in:
Adam Shaw
2014-08-25 22:28:28 -07:00
parent d11aad32e9
commit 076c2c4cbd
+1 -1
View File
@@ -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
}
});
}