diff options
author | Mario Vavti <mario@mariovavti.com> | 2016-08-05 14:45:06 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2016-08-05 14:45:06 +0200 |
commit | b2298d44a4126ba0b7f0355733bb1125c656bac1 (patch) | |
tree | 8f12f84eee380e5e1cfe3003983eaa678a21561a /view | |
parent | c029839971bf73d45026920af01d57fc938b8fce (diff) | |
download | volse-hubzilla-b2298d44a4126ba0b7f0355733bb1125c656bac1.tar.gz volse-hubzilla-b2298d44a4126ba0b7f0355733bb1125c656bac1.tar.bz2 volse-hubzilla-b2298d44a4126ba0b7f0355733bb1125c656bac1.zip |
multi acl: port /settings
Diffstat (limited to 'view')
-rw-r--r-- | view/js/acl.js | 2 | ||||
-rwxr-xr-x | view/tpl/settings.tpl | 4 |
2 files changed, 2 insertions, 4 deletions
diff --git a/view/js/acl.js b/view/js/acl.js index a1af5f4f0..2ba7ea46a 100644 --- a/view/js/acl.js +++ b/view/js/acl.js @@ -97,8 +97,6 @@ ACL.prototype.on_submit = function() { that.form_id.append("<input class='acl-field' type='hidden' name='contact_deny[]' value='"+v+"'>"); }); - //areYouSure jquery plugin: recheck the form here - $('form').trigger('checkform.areYouSure'); }; ACL.prototype.search = function() { diff --git a/view/tpl/settings.tpl b/view/tpl/settings.tpl index 8157196ac..0ec44e9ff 100755 --- a/view/tpl/settings.tpl +++ b/view/tpl/settings.tpl @@ -5,7 +5,7 @@ <div class="clear"></div> </div> {{$nickname_block}} - <form action="settings" id="settings-form" method="post" autocomplete="off" > + <form action="settings" id="settings-form" method="post" autocomplete="off" class="acl-form" data-form_id="settings-form" data-allow_cid='{{$allow_cid}}' data-allow_gid='{{$allow_gid}}' data-deny_cid='{{$deny_cid}}' data-deny_gid='{{$deny_gid}}'> <input type='hidden' name='form_security_token' value='{{$form_security_token}}' /> <div class="panel-group" id="settings" role="tablist" aria-multiselectable="true"> <div class="panel"> @@ -72,7 +72,6 @@ {{/if}} <div id="settings-default-perms" class="form-group" > <button type="button" class="btn btn-default" data-toggle="modal" data-target="#aclModal"><i id="jot-perms-icon" class="fa"></i> {{$permissions}}</button> - {{$aclselect}} </div> {{$group_select}} {{include file="field_checkbox.tpl" field=$hide_presence}} @@ -174,4 +173,5 @@ </div> </div> </form> + {{$aclselect}} </div> |