summaryrefslogtreecommitdiff
path: root/src/static/js/pad_utils.js
diff options
context:
space:
mode:
authorJohn McLear <john@mclear.co.uk>2014-11-01 18:18:25 +0000
committerJohn McLear <john@mclear.co.uk>2014-11-01 18:18:25 +0000
commitd54bb52b759bd68a1ec78735008f88eb9cb22d1f (patch)
tree7e54c0a07a0fa3a201931ac0c9ea7db32b7a52f9 /src/static/js/pad_utils.js
parent4b488bc8af9334f4d93a540813aa8b24534942fe (diff)
downloadetherpad-lite-d54bb52b759bd68a1ec78735008f88eb9cb22d1f.zip
Fixes #1414
https://github.com/ether/etherpad-lite/issues/1414
Diffstat (limited to 'src/static/js/pad_utils.js')
-rw-r--r--src/static/js/pad_utils.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/static/js/pad_utils.js b/src/static/js/pad_utils.js
index c2ff6fd0..343e5fce 100644
--- a/src/static/js/pad_utils.js
+++ b/src/static/js/pad_utils.js
@@ -482,7 +482,7 @@ var padutils = {
},
bindCheckboxChange: function(node, func)
{
- $(node).bind("click change", func);
+ $(node).change(func);
},
encodeUserId: function(userId)
{