aboutsummaryrefslogtreecommitdiffstats
path: root/view/js/mod_settings.js
diff options
context:
space:
mode:
authorTreer <treer.git@the-bordello.com>2016-05-01 04:51:01 +1000
committerTreer <treer.git@the-bordello.com>2016-05-01 04:51:01 +1000
commit2f74f9eb401d03b6eb8f8e12b80a7b8f4a989dd2 (patch)
tree2491604866079eb5ef4553b5e63f68dd76ea8d12 /view/js/mod_settings.js
parent8f16e9ad33e17fcdf5c0b4586b384ea12eeb0716 (diff)
downloadvolse-hubzilla-2f74f9eb401d03b6eb8f8e12b80a7b8f4a989dd2.tar.gz
volse-hubzilla-2f74f9eb401d03b6eb8f8e12b80a7b8f4a989dd2.tar.bz2
volse-hubzilla-2f74f9eb401d03b6eb8f8e12b80a7b8f4a989dd2.zip
update icon names in view/js
Diffstat (limited to 'view/js/mod_settings.js')
-rw-r--r--view/js/mod_settings.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/view/js/mod_settings.js b/view/js/mod_settings.js
index 9a7550ac1..640c154dd 100644
--- a/view/js/mod_settings.js
+++ b/view/js/mod_settings.js
@@ -17,11 +17,11 @@ $(document).ready(function() {
var selstr;
$('#contact_allow option:selected, #contact_deny option:selected, #group_allow option:selected, #group_deny option:selected').each( function() {
selstr = $(this).text();
- $('#jot-perms-icon').removeClass('icon-unlock').addClass('icon-lock');
+ $('#jot-perms-icon').removeClass('fa-unlock').addClass('fa-lock');
$('#jot-public').hide();
});
if(selstr === null) {
- $('#jot-perms-icon').removeClass('icon-lock').addClass('icon-unlock');
+ $('#jot-perms-icon').removeClass('fa-lock').addClass('fa-unlock');
$('#jot-public').show();
}
}).trigger('change');