summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2014-09-02 09:16:33 +0200
committerAleksander Machniak <alec@alec.pl>2014-09-02 09:16:33 +0200
commit588d1948cadd9f443de481b95827c926330547fe (patch)
tree299eb24d7da163c6ee134333d05773cb32a9ad32
parent613f96839cbf63d475a4f56cb1841647bb23ad0c (diff)
Don't cancel event on parent focus
-rw-r--r--program/js/list.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/js/list.js b/program/js/list.js
index 7e84ef2ae..d1dbbcb6c 100644
--- a/program/js/list.js
+++ b/program/js/list.js
@@ -131,7 +131,7 @@ init: function()
}
if (this.parent_focus) {
- this.list.parentNode.onclick = function(e) { me.focus(e); };
+ this.list.parentNode.onclick = function(e) { me.focus(); };
}
return this;