Cloudlog/assets/js/sections/version_dialog.js

49 行
1.2 KiB
JavaScript

2023-12-03 16:37:39 +08:00
// 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();
});
2023-12-04 08:21:25 +08:00
// JavaScript-Funktion displayVersionDialog für Bootstrap 5
2023-12-04 04:29:22 +08:00
function displayVersionDialog() {
2023-12-04 08:21:25 +08:00
$.ajax({
url: base_url + "index.php/Version_Dialog/displayVersionDialog",
type: 'GET',
dataType: 'html',
success: function(data) {
$('body').append(data);
// Aktiviere das Bootstrap-Modal
var versionDialogModal = new bootstrap.Modal(document.getElementById('versionDialogModal'));
versionDialogModal.show();
},
error: function() {
// Behandlung von Fehlern
console.log('Fehler beim Laden der PHP-Datei.');
}
});
}
function dismissVersionDialog() {
$.ajax({
url: base_url + 'index.php/user_options/dismissVersionDialog',
method: 'POST',
2023-12-04 04:29:22 +08:00
});
2023-12-04 08:21:25 +08:00
}