mirror of
https://github.com/friendica/friendica
synced 2024-11-15 23:33:59 +00:00
33 lines
808 B
Smarty
33 lines
808 B
Smarty
{{*
|
|
* Copyright (C) 2010-2024, the Friendica project
|
|
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*}}
|
|
|
|
|
|
<script>
|
|
|
|
var ispublic = "{{$ispublic nofilter}}";
|
|
|
|
|
|
$(document).ready(function() {
|
|
|
|
$('#contact_allow, #contact_deny, #circle_allow, #circle_deny').change(function() {
|
|
var selstr;
|
|
$('#contact_allow option:selected, #contact_deny option:selected, #circle_allow option:selected, #circle_deny option:selected').each( function() {
|
|
selstr = $(this).html();
|
|
$('#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');
|
|
|
|
});
|
|
|
|
</script>
|
|
|