rhymix/modules/admin/tpl/js/queue_config.js
2024-10-10 01:45:14 +09:00

16 lines
423 B
JavaScript

(function($) {
$(function() {
$("#queue_driver").on("change", function() {
var selected_driver = $(this).val();
$(this).parents("section").find("div.x_control-group.hidden-by-default, p.x_help-block.hidden-by-default").each(function() {
if ($(this).hasClass("show-for-" + selected_driver)) {
$(this).show();
} else {
$(this).hide();
}
});
}).triggerHandler("change");
});
})(jQuery);