From d54bb52b759bd68a1ec78735008f88eb9cb22d1f Mon Sep 17 00:00:00 2001 From: John McLear Date: Sat, 1 Nov 2014 18:18:25 +0000 Subject: [PATCH] Fixes #1414 https://github.com/ether/etherpad-lite/issues/1414 --- src/static/js/pad_utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {