]> git.mxchange.org Git - friendica.git/blobdiff - view/theme/frost/js/acl.js
Merge pull request #4892 from MrPetovan/bug/infinite-loop-in-dba-delete
[friendica.git] / view / theme / frost / js / acl.js
index 401a524f81352f0c6ba193653468262e401ee2c6..1eb758b5b82a2abb2322f69a997622659e81a1e5 100644 (file)
@@ -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);