Cloudlog/assets/js/sections/version_dialog.js
2023-12-03 09:37:39 +01:00

22 行
无行尾
514 B
JavaScript

// Admin Menu - Version Dialog Settings
function showCustomTextarea() {
var selectedOptionValue = $("#version_dialog_mode option:selected").val();
if (selectedOptionValue === "custom_text" || selectedOptionValue === "both") {
$('#version_dialog_custom_textarea').show();
} else {
$('#version_dialog_custom_textarea').hide();
}
}
$(document).ready(function () {
showCustomTextarea();
});
$('#version_dialog_mode').on('change', function () {
showCustomTextarea();
});
//