diff options
author | RedMatrix <info@friendica.com> | 2015-03-16 10:51:15 +1100 |
---|---|---|
committer | RedMatrix <info@friendica.com> | 2015-03-16 10:51:15 +1100 |
commit | e780dada832acbb9d46870178f9a6488f4e265d9 (patch) | |
tree | 4dafc508962ed625ebf8a7f462cf15d59c8e2f4c /view/js/mod_settings.js | |
parent | fdcbb61bcb61a980a7a9171432498a9cac6e0965 (diff) | |
parent | 864116805b7adf8e82be582c2df8524c44a829fd (diff) | |
download | volse-hubzilla-e780dada832acbb9d46870178f9a6488f4e265d9.tar.gz volse-hubzilla-e780dada832acbb9d46870178f9a6488f4e265d9.tar.bz2 volse-hubzilla-e780dada832acbb9d46870178f9a6488f4e265d9.zip |
Merge pull request #931 from dawnbreak/master
Some JavaScript cleanups.
Diffstat (limited to 'view/js/mod_settings.js')
-rw-r--r-- | view/js/mod_settings.js | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/view/js/mod_settings.js b/view/js/mod_settings.js index e144ed6cd..9c1821494 100644 --- a/view/js/mod_settings.js +++ b/view/js/mod_settings.js @@ -1,5 +1,9 @@ +/** + * JavaScript used by mod/settings + */ -var ispublic = aStr['everybody'] ; +// is this used anywhere? +var ispublic = aStr.everybody; $(document).ready(function() { $('form').areYouSure({'addRemoveFieldsMarksDirty':true}); // Warn user about unsaved settings @@ -19,13 +23,11 @@ $(document).ready(function() { $('#jot-perms-icon').removeClass('icon-unlock').addClass('icon-lock'); $('#jot-public').hide(); }); - if(selstr == null) { + if(selstr === null) { $('#jot-perms-icon').removeClass('icon-lock').addClass('icon-unlock'); $('#jot-public').show(); } - }).trigger('change'); - }); /** @@ -132,7 +134,5 @@ function channel_privacy_macro(n) { $('#id_profile_in_directory_onoff .on').removeClass('hidden'); $('#id_profile_in_directory_onoff .off').addClass('hidden'); $('#id_profile_in_directory').val(1); - } - -} +}
\ No newline at end of file |