diff options
Diffstat (limited to 'view/de')
-rw-r--r-- | view/de/jot-header.tpl | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/view/de/jot-header.tpl b/view/de/jot-header.tpl index 41abdf0f3..58403f1ba 100644 --- a/view/de/jot-header.tpl +++ b/view/de/jot-header.tpl @@ -75,10 +75,12 @@ tinyMCE.init({ $('#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'); - + $('.profile-jot-net input').attr('disabled', 'disabled'); }); - if(selstr == null) + if(selstr == null) { $('#profile-jot-perms img').attr('src', 'images/unlock_icon.gif'); + $('.profile-jot-net input').attr('disabled', false); + } }).trigger('change'); |