file had wrong extension

This commit is contained in:
friendica
2014-03-11 21:45:20 -07:00
parent d7dcf463ed
commit 3f337dad2c
3 changed files with 7 additions and 16 deletions

View File

@@ -0,0 +1,16 @@
$(document).ready(function() {
$('#contact_allow, #contact_deny, #group_allow, #group_deny').change(function() {
var selstr;
$('#contact_allow option:selected, #contact_deny option:selected, #group_allow option:selected, #group_deny option:selected').each( function() {
selstr = $(this).text();
$('#jot-perms-icon').removeClass('unlock').addClass('lock');
$('#jot-public').hide();
});
if(selstr == null) {
$('#jot-perms-icon').removeClass('lock').addClass('unlock');
$('#jot-public').show();
}
}).trigger('change');
});