Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

再インストール時「SMTP ホスト」等がグレーダウンしている #846 #847

Merged
merged 2 commits into from
Feb 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 6 additions & 10 deletions html/install/templates/step1.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -22,21 +22,17 @@
<script type="text/javascript">
$(function() {
$('.option').hide();
if ($('input[name=mail_backend]').val() == 'smtp') {
$('.smtp').attr('disabled', false);
} else {
$('.smtp').attr('disabled', true);
}
changeSmtpDisabled();
$('#options').click(function() {
$('.option').slideToggle();
});
$('input[name=mail_backend]').change(function() {
if ($(this).val() == 'smtp') {
$('.smtp').attr('disabled', false);
} else {
$('.smtp').attr('disabled', true);
}
changeSmtpDisabled();
});
function changeSmtpDisabled() {
let disabled = $('input[name=mail_backend]:checked').val() != 'smtp';
$('.smtp').attr('disabled', disabled);
}
});
</script>
<!--{strip}-->
Expand Down
Loading