We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7afeefd commit 06a25ddCopy full SHA for 06a25dd
js/rowlink.js
@@ -33,7 +33,7 @@
33
Rowlink.prototype.click = function(e, ctrlKey) {
34
var target = $(e.currentTarget).closest('tr').find(this.options.target)[0]
35
36
- if ($(e.target)[0] === target) return
+ if (typeof target == 'undefined' || $(e.target)[0] === target) return
37
if (e.type === 'mouseup' && e.which !== 2) return
38
39
e.preventDefault();
0 commit comments