diff options
author | Friendika <info@friendika.com> | 2011-04-28 15:43:52 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-04-28 15:43:52 -0700 |
commit | e14ab2d369391ee9c97d5568034423f303222019 (patch) | |
tree | 4f7609584fdcaf2f6063ac4b0f1b2a901373e024 /view/jot-header.tpl | |
parent | 0ac4d6ecc97baf3a8b40e411d2e57e9908667675 (diff) | |
parent | f6984f9929074db46e38c1a26a03d91309b29af2 (diff) | |
download | volse-hubzilla-e14ab2d369391ee9c97d5568034423f303222019.tar.gz volse-hubzilla-e14ab2d369391ee9c97d5568034423f303222019.tar.bz2 volse-hubzilla-e14ab2d369391ee9c97d5568034423f303222019.zip |
Merged pull request #92 from fabrixxm/dispy.
Dispy theme [wip]
Diffstat (limited to 'view/jot-header.tpl')
-rw-r--r-- | view/jot-header.tpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/view/jot-header.tpl b/view/jot-header.tpl index 94f0f58f8..0fdd30209 100644 --- a/view/jot-header.tpl +++ b/view/jot-header.tpl @@ -74,11 +74,11 @@ tinyMCE.init({ var selstr; $('#contact_allow option:selected, #contact_deny option:selected, #group_allow option:selected, #group_deny option:selected').each( function() { selstr = $(this).text(); - $('#profile-jot-perms img').attr('src', 'images/lock_icon.gif'); + $('#jot-perms-icon').removeClass('unlock').addClass('lock'); $('.profile-jot-net input').attr('disabled', 'disabled'); }); if(selstr == null) { - $('#profile-jot-perms img').attr('src', 'images/unlock_icon.gif'); + $('#jot-perms-icon').removeClass('lock').addClass('unlock'); $('.profile-jot-net input').attr('disabled', false); } |