aboutsummaryrefslogtreecommitdiffstats
path: root/js
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-05-09 21:43:06 -0700
committerfriendica <info@friendica.com>2013-05-09 21:43:06 -0700
commitd75be6dbe6b4fa062cf44fdcc92fe3290f322d40 (patch)
tree426707f961c1f5c81fff7ec78fd77cdcb37e1dc2 /js
parent7dfea2c70dd79986f54a6b4e12d25be47a6abc88 (diff)
downloadvolse-hubzilla-d75be6dbe6b4fa062cf44fdcc92fe3290f322d40.tar.gz
volse-hubzilla-d75be6dbe6b4fa062cf44fdcc92fe3290f322d40.tar.bz2
volse-hubzilla-d75be6dbe6b4fa062cf44fdcc92fe3290f322d40.zip
more jquery migration
Diffstat (limited to 'js')
-rw-r--r--js/acl.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/acl.js b/js/acl.js
index 3eb6a65a4..629a55447 100644
--- a/js/acl.js
+++ b/js/acl.js
@@ -21,8 +21,8 @@ function ACL(backend_url, preset){
/*events*/
that.showall.click(that.on_showall);
- $(".acl-button-show").live('click', that.on_button_show);
- $(".acl-button-hide").live('click', that.on_button_hide);
+ $(document).on('click','.acl-button-show',that.on_button_show);
+ $(document).on('click','.acl-button-hide',that.on_button_hide);
$("#acl-search").keypress(that.on_search);
$("#acl-wrapper").parents("form").submit(that.on_submit);