diff options
author | marijus <mario@mariovavti.com> | 2014-04-09 17:10:07 +0200 |
---|---|---|
committer | marijus <mario@mariovavti.com> | 2014-04-09 17:10:07 +0200 |
commit | 74bd772a5bba5cd2c92e708d237128ab2dbdb53c (patch) | |
tree | 7c1749520daa2102c5e97851713e6551cf8b78dd /view/js/acl.js | |
parent | c4233232b7612e3ace2bcc4e27b77fe1fec832ba (diff) | |
download | volse-hubzilla-74bd772a5bba5cd2c92e708d237128ab2dbdb53c.tar.gz volse-hubzilla-74bd772a5bba5cd2c92e708d237128ab2dbdb53c.tar.bz2 volse-hubzilla-74bd772a5bba5cd2c92e708d237128ab2dbdb53c.zip |
replace lock icon with icon-{lock, unlock}
Diffstat (limited to 'view/js/acl.js')
-rw-r--r-- | view/js/acl.js | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/view/js/acl.js b/view/js/acl.js index 6c3d9b462..308e65131 100644 --- a/view/js/acl.js +++ b/view/js/acl.js @@ -162,23 +162,11 @@ ACL.prototype.set_deny = function(itemid){ } ACL.prototype.update_view = function(){ - var jotpermslock; - var jotpermsunlock; - if (document.jotpermslock == null) { - jotpermslock = 'lock'; - } else { - jotpermslock = document.jotpermslock; - } - if (document.jotpermsunlock == null) { - jotpermsunlock = 'unlock'; - } else { - jotpermsunlock = document.jotpermsunlock; - } if (that.allow_gid.length==0 && that.allow_cid.length==0 && that.deny_gid.length==0 && that.deny_cid.length==0){ that.showall.addClass("selected"); /* jot acl */ - $('#jot-perms-icon').removeClass(jotpermslock).addClass(jotpermsunlock); + $('#jot-perms-icon').removeClass('icon-lock').addClass('icon-unlock'); $('#jot-public').show(); $('.profile-jot-net input').attr('disabled', false); if(typeof editor != 'undefined' && editor != false) { @@ -188,7 +176,7 @@ ACL.prototype.update_view = function(){ } else { that.showall.removeClass("selected"); /* jot acl */ - $('#jot-perms-icon').removeClass(jotpermsunlock).addClass(jotpermslock); + $('#jot-perms-icon').removeClass('icon-unlock').addClass('icon-lock'); $('#jot-public').hide(); $('.profile-jot-net input').attr('disabled', 'disabled'); $('#profile-jot-desc').html(' '); |