aboutsummaryrefslogtreecommitdiffstats
path: root/view/acl_selector.tpl
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-07-25 22:55:43 -0700
committerfriendica <info@friendica.com>2012-07-25 22:55:43 -0700
commit7bdbb8331c8341e6c3ea0b463f0a742d06972245 (patch)
treeaefe7364c818bd29d24800b2ce28d894f946f85d /view/acl_selector.tpl
parent21b3dc9c27be50e73944eaec97001ad1279400f1 (diff)
downloadvolse-hubzilla-7bdbb8331c8341e6c3ea0b463f0a742d06972245.tar.gz
volse-hubzilla-7bdbb8331c8341e6c3ea0b463f0a742d06972245.tar.bz2
volse-hubzilla-7bdbb8331c8341e6c3ea0b463f0a742d06972245.zip
picking up the page load times a bit
Diffstat (limited to 'view/acl_selector.tpl')
-rw-r--r--view/acl_selector.tpl14
1 files changed, 8 insertions, 6 deletions
diff --git a/view/acl_selector.tpl b/view/acl_selector.tpl
index 655ea8980..e5231b0f8 100644
--- a/view/acl_selector.tpl
+++ b/view/acl_selector.tpl
@@ -16,11 +16,13 @@
<script>
$(document).ready(function() {
- if(typeof acl=="undefined"){
- acl = new ACL(
- baseurl+"/acl",
- [ $allowcid,$allowgid,$denycid,$denygid ]
- );
- }
+ setTimeout( function () {
+ if(typeof acl=="undefined"){
+ acl = new ACL(
+ baseurl+"/acl",
+ [ $allowcid,$allowgid,$denycid,$denygid ]
+ );
+ }
+ }, 5000 );
});
</script>