diff options
author | John McLear <john@mclear.co.uk> | 2014-11-01 20:20:19 +0000 |
---|---|---|
committer | John McLear <john@mclear.co.uk> | 2014-11-01 20:20:19 +0000 |
commit | 9b8398d0bde62885cb7d84b2d3dbffe1581722ef (patch) | |
tree | a672106e4b8bc3998fa63fc5e115eada09aae053 | |
parent | bf380eea504662ea41aa431e30d7e30ad6a36cd3 (diff) | |
parent | d54bb52b759bd68a1ec78735008f88eb9cb22d1f (diff) | |
download | etherpad-lite-9b8398d0bde62885cb7d84b2d3dbffe1581722ef.zip |
Merge branch 'develop' of github.com:ether/etherpad-lite into develop
-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) { |