summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2014-10-25 17:53:54 +0200
committerAleksander Machniak <alec@alec.pl>2014-10-25 17:53:54 +0200
commit3350458b87b84a613b29c5676262be178e7a46e4 (patch)
treed7bc3722690dcb8eb65a71e82b493db3b38f8572
parent71dbeeee10d0e3efcda95b8bbe7a2e4156e0f7fe (diff)
Catch only left-button clicks on the list widget's mouseup handler
-rw-r--r--program/js/list.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/program/js/list.js b/program/js/list.js
index d1dbbcb6c..dbc14d6b8 100644
--- a/program/js/list.js
+++ b/program/js/list.js
@@ -150,9 +150,9 @@ init_row: function(row)
var self = this, uid = row.uid;
this.rows[uid] = {uid:uid, id:row.id, obj:row};
- // set eventhandlers to table row
+ // set eventhandlers to table row (only left-button-clicks in mouseup)
row.onmousedown = function(e){ return self.drag_row(e, this.uid); };
- row.onmouseup = function(e){ return self.click_row(e, this.uid); };
+ row.onmouseup = function(e){ if (e.which == 1) return self.click_row(e, this.uid); };
if (bw.touch) {
row.addEventListener('touchstart', function(e) {