aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/acl.js4
-rw-r--r--view/theme/duepuntozero/style.css1
2 files changed, 5 insertions, 0 deletions
diff --git a/include/acl.js b/include/acl.js
index a0a1f5dd8..82b631ee9 100644
--- a/include/acl.js
+++ b/include/acl.js
@@ -153,6 +153,9 @@ ACL.prototype.updateview = function(){
$('#jot-perms-icon').removeClass('lock').addClass('unlock');
$('#jot-public').show();
$('.profile-jot-net input').attr('disabled', false);
+ if(editor != false) {
+ $('#profile-jot-desc').html(ispublic);
+ }
} else {
that.showall.removeClass("selected");
@@ -160,6 +163,7 @@ ACL.prototype.updateview = function(){
$('#jot-perms-icon').removeClass('unlock').addClass('lock');
$('#jot-public').hide();
$('.profile-jot-net input').attr('disabled', 'disabled');
+ $('#profile-jot-desc').html(' ');
}
$("#acl-list-content .acl-list-item").each(function(){
diff --git a/view/theme/duepuntozero/style.css b/view/theme/duepuntozero/style.css
index 28c1ce9a1..3edc603f4 100644
--- a/view/theme/duepuntozero/style.css
+++ b/view/theme/duepuntozero/style.css
@@ -1487,6 +1487,7 @@ input#dfrn-url {
height: 20px;
color:#cccccc;
border: 1px solid #cccccc;
+ padding: 3px 0px 0px 5px;
}