aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-11-28 00:16:57 -0800
committerfriendica <info@friendica.com>2013-11-28 00:16:57 -0800
commit2d7d145ebb3ac1a3d9282095be6246f4afdd2afe (patch)
treeb4def5124dd26425b5ff2dff0a6b33e309967b0b
parentaab9b30d03e2cad7be2207fa22dcd6ddad224369 (diff)
parent689b94bf09519398c0f3c955f0d39eb93235b4ac (diff)
downloadvolse-hubzilla-2d7d145ebb3ac1a3d9282095be6246f4afdd2afe.tar.gz
volse-hubzilla-2d7d145ebb3ac1a3d9282095be6246f4afdd2afe.tar.bz2
volse-hubzilla-2d7d145ebb3ac1a3d9282095be6246f4afdd2afe.zip
Merge https://github.com/friendica/red into zpull
-rw-r--r--js/acl.js16
1 files changed, 14 insertions, 2 deletions
diff --git a/js/acl.js b/js/acl.js
index 591c9c467..906b28354 100644
--- a/js/acl.js
+++ b/js/acl.js
@@ -152,11 +152,23 @@ 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('lock').addClass('unlock');
+ $('#jot-perms-icon').removeClass(jotpermslock).addClass(jotpermsunlock);
$('#jot-public').show();
$('.profile-jot-net input').attr('disabled', false);
if(typeof editor != 'undefined' && editor != false) {
@@ -166,7 +178,7 @@ ACL.prototype.update_view = function(){
} else {
that.showall.removeClass("selected");
/* jot acl */
- $('#jot-perms-icon').removeClass('unlock').addClass('lock');
+ $('#jot-perms-icon').removeClass(jotpermsunlock).addClass(jotpermslock);
$('#jot-public').hide();
$('.profile-jot-net input').attr('disabled', 'disabled');
$('#profile-jot-desc').html('&nbsp;');