diff --git a/ui/scripts/configuration.js b/ui/scripts/configuration.js index 1654095402b..704f4dd9db0 100644 --- a/ui/scripts/configuration.js +++ b/ui/scripts/configuration.js @@ -353,8 +353,15 @@ args.response.success({ data: items }); - - + args.$select.change(function() { + var $form = $(this).closest('form'); + var $fields = $form.find('.field'); + if ($(this).val() == "ImplicitDedicationPlanner") { + $form.find('[rel=plannerMode]').css('display', 'block'); + } else { + $form.find('[rel=plannerMode]').hide(); + } + }); } }); }