diff options
author | Treer <treer.git@the-bordello.com> | 2016-05-01 04:51:01 +1000 |
---|---|---|
committer | Treer <treer.git@the-bordello.com> | 2016-05-01 04:51:01 +1000 |
commit | 2f74f9eb401d03b6eb8f8e12b80a7b8f4a989dd2 (patch) | |
tree | 2491604866079eb5ef4553b5e63f68dd76ea8d12 /view/js/acl.js | |
parent | 8f16e9ad33e17fcdf5c0b4586b384ea12eeb0716 (diff) | |
download | volse-hubzilla-2f74f9eb401d03b6eb8f8e12b80a7b8f4a989dd2.tar.gz volse-hubzilla-2f74f9eb401d03b6eb8f8e12b80a7b8f4a989dd2.tar.bz2 volse-hubzilla-2f74f9eb401d03b6eb8f8e12b80a7b8f4a989dd2.zip |
update icon names in view/js
Diffstat (limited to 'view/js/acl.js')
-rw-r--r-- | view/js/acl.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/view/js/acl.js b/view/js/acl.js index 7940a9bdc..be215fc91 100644 --- a/view/js/acl.js +++ b/view/js/acl.js @@ -193,13 +193,13 @@ ACL.prototype.update_view = function() { that.deny_gid.length === 0 && that.deny_cid.length === 0) { that.showall.removeClass("btn-default").addClass("btn-warning"); /* jot acl */ - $('#jot-perms-icon').removeClass('icon-lock').addClass('icon-unlock'); + $('#jot-perms-icon').removeClass('fa-lock').addClass('fa-unlock'); $('#jot-public').show(); $('.profile-jot-net input').attr('disabled', false); } else { that.showall.removeClass("btn-warning").addClass("btn-default"); /* jot acl */ - $('#jot-perms-icon').removeClass('icon-unlock').addClass('icon-lock'); + $('#jot-perms-icon').removeClass('fa-unlock').addClass('fa-lock'); $('#jot-public').hide(); $('.profile-jot-net input').attr('disabled', 'disabled'); |