diff options
author | John McLear <john@mclear.co.uk> | 2014-11-01 18:18:25 +0000 |
---|---|---|
committer | John McLear <john@mclear.co.uk> | 2014-11-01 18:18:25 +0000 |
commit | d54bb52b759bd68a1ec78735008f88eb9cb22d1f (patch) | |
tree | 7e54c0a07a0fa3a201931ac0c9ea7db32b7a52f9 /src | |
parent | 4b488bc8af9334f4d93a540813aa8b24534942fe (diff) | |
download | etherpad-lite-d54bb52b759bd68a1ec78735008f88eb9cb22d1f.zip |
Fixes #1414
https://github.com/ether/etherpad-lite/issues/1414
Diffstat (limited to 'src')
-rw-r--r-- | src/static/js/pad_utils.js | 2 |
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) { |