|
Server : Apache/2.4.41 (Ubuntu) System : Linux vmi1525618.contaboserver.net 5.4.0-105-generic #119-Ubuntu SMP Mon Mar 7 18:49:24 UTC 2022 x86_64 User : www-data ( 33) PHP Version : 8.2.12 Disable Function : NONE Directory : /var/www/lecturebazaar.com/resources/js/admin/settings/ |
Upload File : |
(function ($) {
"use strict";
$('body').on('change', '#heroSection1', function (e) {
e.preventDefault();
if (this.checked) {
$('#heroSection2').prop('checked', false);
} else {
$('#heroSection2').prop('checked', false);
}
});
$('body').on('change', '#heroSection2', function (e) {
e.preventDefault();
if (this.checked) {
$('#heroSection1').prop('checked', false);
} else {
$('#heroSection1').prop('checked', false);
}
});
$('body').on('change', '#loginDeviceLimit', function (e) {
e.preventDefault();
const $input = $('.js-device-limit-number');
if (this.checked) {
$input.removeClass('d-none');
} else {
$input.addClass('d-none');
}
});
$('body').on('change', '#allow_instructor_delete_contentSwitch', function (e) {
e.preventDefault();
const $input = $('.js-content-delete-method-field');
if (this.checked) {
$input.removeClass('d-none');
} else {
$input.addClass('d-none');
}
});
})(jQuery);