mirror of
https://github.com/friendica/friendica
synced 2024-11-09 16:22:56 +00:00
bug fix: live function is deprecated
This commit is contained in:
parent
c78c88c266
commit
76535578ba
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue