aboutsummaryrefslogtreecommitdiffstats
path: root/view/acl_selector.tpl
diff options
context:
space:
mode:
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>