aboutsummaryrefslogtreecommitdiffstats
path: root/view/js
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-08-27 21:17:46 -0700
committerfriendica <info@friendica.com>2012-08-27 21:17:46 -0700
commit7fad83cea4dd134df6dacf8248ef6947dca7f100 (patch)
treec4a8174b8dac64949e874b9149456e2541050f1c /view/js
parent8c3c3d5fd7acc5df0aec9c10f8bdd89bedd2060a (diff)
downloadvolse-hubzilla-7fad83cea4dd134df6dacf8248ef6947dca7f100.tar.gz
volse-hubzilla-7fad83cea4dd134df6dacf8248ef6947dca7f100.tar.bz2
volse-hubzilla-7fad83cea4dd134df6dacf8248ef6947dca7f100.zip
Now logging in with Red zaccount/zentity instead of Friendica user. Yay. Most existing Friendica functionality is now stuffed since the Red structures are quite different.
Diffstat (limited to 'view/js')
-rw-r--r--view/js/mod_settings.js21
1 files changed, 21 insertions, 0 deletions
diff --git a/view/js/mod_settings.js b/view/js/mod_settings.js
new file mode 100644
index 000000000..bcfa9b574
--- /dev/null
+++ b/view/js/mod_settings.js
@@ -0,0 +1,21 @@
+
+var ispublic = aStr['everybody'] ;
+
+$(document).ready(function() {
+
+ $('#contact_allow, #contact_deny, #group_allow, #group_deny').change(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('unlock').addClass('lock');
+ $('#jot-public').hide();
+ });
+ if(selstr == null) {
+ $('#jot-perms-icon').removeClass('lock').addClass('unlock');
+ $('#jot-public').show();
+ }
+
+ }).trigger('change');
+
+});
+