aboutsummaryrefslogtreecommitdiffstats
path: root/view/js/acl.js
diff options
context:
space:
mode:
authorRedMatrix <info@friendica.com>2014-04-10 13:54:34 +1000
committerRedMatrix <info@friendica.com>2014-04-10 13:54:34 +1000
commit5d5ff22b1dc551863342d2c7c7f44607bbd44777 (patch)
tree236e1999b23db046106b8b54f9cea4b43d1b120d /view/js/acl.js
parent46ed2570b80d7468dc6e875ccb02f533f9cbd139 (diff)
parentb88a7fc23a185a6ecfbc451bddc7da33ea2c4d4c (diff)
downloadvolse-hubzilla-5d5ff22b1dc551863342d2c7c7f44607bbd44777.tar.gz
volse-hubzilla-5d5ff22b1dc551863342d2c7c7f44607bbd44777.tar.bz2
volse-hubzilla-5d5ff22b1dc551863342d2c7c7f44607bbd44777.zip
Merge pull request #399 from git-marijus/master
change the way jot tools are displayed/hidden
Diffstat (limited to 'view/js/acl.js')
-rw-r--r--view/js/acl.js16
1 files changed, 2 insertions, 14 deletions
diff --git a/view/js/acl.js b/view/js/acl.js
index 6c3d9b462..308e65131 100644
--- a/view/js/acl.js
+++ b/view/js/acl.js
@@ -162,23 +162,11 @@ 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(jotpermslock).addClass(jotpermsunlock);
+ $('#jot-perms-icon').removeClass('icon-lock').addClass('icon-unlock');
$('#jot-public').show();
$('.profile-jot-net input').attr('disabled', false);
if(typeof editor != 'undefined' && editor != false) {
@@ -188,7 +176,7 @@ ACL.prototype.update_view = function(){
} else {
that.showall.removeClass("selected");
/* jot acl */
- $('#jot-perms-icon').removeClass(jotpermsunlock).addClass(jotpermslock);
+ $('#jot-perms-icon').removeClass('icon-unlock').addClass('icon-lock');
$('#jot-public').hide();
$('.profile-jot-net input').attr('disabled', 'disabled');
$('#profile-jot-desc').html('&nbsp;');