Sha256: 961f9f80c5c9716b0131791f0b15679cd4267c49121bf4c420e4fd9139fa52ea

Contents?: true

Size: 350 Bytes

Versions: 12

Compression:

Stored size: 350 Bytes

Contents

$(document).on('change', 'select.input_type_selector', function () {
  update_visibility_after_input_type_change($(this));
});

function update_visibility_after_input_type_change(select){
  fieldset = select.closest('fieldset');
  fieldset.find('div.custom_input_type_fields').hide();
  fieldset.find('div.' + select.val() + '_input_type').show();
}

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
foreman_remote_execution-0.1.2 app/assets/javascripts/template_input.js
foreman_remote_execution-0.1.1 app/assets/javascripts/template_input.js
foreman_remote_execution-0.1.0 app/assets/javascripts/template_input.js
foreman_remote_execution-0.0.10 app/assets/javascripts/template_input.js
foreman_remote_execution-0.0.8 app/assets/javascripts/template_input.js
foreman_remote_execution-0.0.7 app/assets/javascripts/template_input.js
foreman_remote_execution-0.0.6 app/assets/javascripts/template_input.js
foreman_remote_execution-0.0.5 app/assets/javascripts/template_input.js
foreman_remote_execution-0.0.4 app/assets/javascripts/template_input.js
foreman_remote_execution-0.0.3 app/assets/javascripts/template_input.js
foreman_remote_execution-0.0.2 app/assets/javascripts/template_input.js
foreman_remote_execution-0.0.1 app/assets/javascripts/template_input.js