diff options
author | redmatrix <git@macgirvin.com> | 2016-08-21 16:33:59 -0700 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-08-21 16:33:59 -0700 |
commit | b6a545b4a279061c7e786dbfe4d63679bfe18e07 (patch) | |
tree | 7da62eb162b2c26116923bf5995d6499f840b4c8 /view/js | |
parent | 4d34d9c03269ea9b8ca038a87f5351cfe4dbeff1 (diff) | |
parent | 4f62d7a78f63e4bae136f52d70d0af906d997b78 (diff) | |
download | volse-hubzilla-b6a545b4a279061c7e786dbfe4d63679bfe18e07.tar.gz volse-hubzilla-b6a545b4a279061c7e786dbfe4d63679bfe18e07.tar.bz2 volse-hubzilla-b6a545b4a279061c7e786dbfe4d63679bfe18e07.zip |
Merge branch 'dev' of https://github.com/git-marijus/hubzilla into git-marijus-dev
Diffstat (limited to 'view/js')
-rw-r--r-- | view/js/acl.js | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/view/js/acl.js b/view/js/acl.js index eb7b7f523..c1685e137 100644 --- a/view/js/acl.js +++ b/view/js/acl.js @@ -100,13 +100,6 @@ ACL.prototype.on_submit = function() { $(that.deny_cid).each(function(i,v) { that.form_id.append("<input class='acl-field' type='hidden' name='contact_deny[]' value='"+v+"'>"); }); - - var formfields = $('.profile-jot-net input').serializeArray(); - - $.each(formfields, function(i, field) { - that.form_id.append("<input class='acl-field' type='hidden' name='"+field.name+"' value='"+field.value+"'>"); - }); - }; ACL.prototype.search = function() { @@ -283,6 +276,7 @@ ACL.prototype.update_view = function(value) { /* jot acl */ $('#jot-perms-icon, #dialog-perms-icon').removeClass('fa-lock').addClass('fa-unlock'); + $('#dbtn-jotnets').show(); $('.profile-jot-net input').attr('disabled', false); } @@ -295,6 +289,7 @@ ACL.prototype.update_view = function(value) { /* jot acl */ $('#jot-perms-icon, #dialog-perms-icon').removeClass('fa-unlock').addClass('fa-lock'); + $('#dbtn-jotnets').hide(); $('.profile-jot-net input').attr('disabled', 'disabled'); } @@ -306,6 +301,7 @@ ACL.prototype.update_view = function(value) { /* jot acl */ $('#jot-perms-icon, #dialog-perms-icon').removeClass('fa-unlock').addClass('fa-lock'); + $('#dbtn-jotnets').hide(); $('.profile-jot-net input').attr('disabled', 'disabled'); } @@ -317,10 +313,12 @@ ACL.prototype.update_view = function(value) { /* jot acl */ if(that.allow_gid.length === 0 && that.allow_cid.length === 0 && that.deny_gid.length === 0 && that.deny_cid.length === 0 && value === 'custom') { $('#jot-perms-icon, #dialog-perms-icon').removeClass('fa-lock').addClass('fa-unlock'); + $('#dbtn-jotnets').show(); $('.profile-jot-net input').attr('disabled', false); } else { $('#jot-perms-icon, #dialog-perms-icon').removeClass('fa-unlock').addClass('fa-lock'); + $('#dbtn-jotnets').hide(); $('.profile-jot-net input').attr('disabled', 'disabled'); } } |