Skip to content

Commit

Permalink
Fix table box display on toggle
Browse files Browse the repository at this point in the history
  • Loading branch information
jontey committed Jan 24, 2018
1 parent 4dcc5a2 commit 43d2561
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion asset/js/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -1739,7 +1739,8 @@ var execute_next_step;

// show / hide table select box when specific settings change
$('input.multiselect-toggle').change(function() {
$(this).parents('.expandable-content').children('.select-wrap').toggle();
// Only show when migrate selected is checked. Hide otherwise
$(this).parents('.expandable-content').children('.select-wrap').toggle($(this).is('#migrate-selected') && $(this).is(':checked'));
});

$('.show-multiselect').each(function() {
Expand Down

0 comments on commit 43d2561

Please sign in to comment.