Add option to apply default file settings to module

This commit is contained in:
Kijin Sung 2019-08-01 20:49:34 +09:00
parent 9d08cac27b
commit 6d2a91134c
9 changed files with 58 additions and 14 deletions

View file

@ -0,0 +1,12 @@
(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);