mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-06 10:11:38 +09:00
12 lines
247 B
JavaScript
12 lines
247 B
JavaScript
(function($) {
|
|
$(function() {
|
|
|
|
$('#use_default_file_config').on('change', function() {
|
|
if ($(this).is(':checked')) {
|
|
$('.use_custom_file_config').hide();
|
|
} else {
|
|
$('.use_custom_file_config').show();
|
|
}
|
|
});
|
|
});
|
|
})(jQuery);
|