aboutsummaryrefslogtreecommitdiffstats
path: root/view
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-11-13 15:34:35 -0800
committerfriendica <info@friendica.com>2014-11-13 15:34:35 -0800
commitb5da015789876cda5581044647f2e4f8b7ee4e4c (patch)
tree7f5a59e0a18ab08fbdadbf4fbd449e59beae4b81 /view
parent25d69a9068b16391e17a76d1dbc9b1faca7b319c (diff)
downloadvolse-hubzilla-b5da015789876cda5581044647f2e4f8b7ee4e4c.tar.gz
volse-hubzilla-b5da015789876cda5581044647f2e4f8b7ee4e4c.tar.bz2
volse-hubzilla-b5da015789876cda5581044647f2e4f8b7ee4e4c.zip
put timeout code in place but don't turn it on.
Diffstat (limited to 'view')
-rw-r--r--view/js/acl.js16
1 files changed, 9 insertions, 7 deletions
diff --git a/view/js/acl.js b/view/js/acl.js
index eb702d2b0..f9fd66bab 100644
--- a/view/js/acl.js
+++ b/view/js/acl.js
@@ -25,14 +25,16 @@ function ACL(backend_url, preset){
/*events*/
$(document).ready(function() {
- that.showall.click(that.on_showall);
- $(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);
+// setTimeout( function() {
+ that.showall.click(that.on_showall);
+ $(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);
- /* startup! */
- that.get(0,100);
- that.on_submit();
+ /* startup! */
+ that.get(0,100);
+ that.on_submit();
+// }, 5000 );
});
}