diff options
Diffstat (limited to 'web')
-rw-r--r-- | web/cobrands/fixmystreet/staff.js | 12 | ||||
-rw-r--r-- | web/cobrands/sass/_base.scss | 2 |
2 files changed, 13 insertions, 1 deletions
diff --git a/web/cobrands/fixmystreet/staff.js b/web/cobrands/fixmystreet/staff.js index 5355a8f54..2a1c6a8f4 100644 --- a/web/cobrands/fixmystreet/staff.js +++ b/web/cobrands/fixmystreet/staff.js @@ -80,6 +80,18 @@ $.extend(fixmystreet.set_up, { $("#js-change-duplicate-report").click(refresh_duplicate_list); }, + action_scheduled_raise_defect: function() { + $("#report_inspect_form").find('[name=state]').on('change', function() { + if ($(this).val() !== "action scheduled") { + $("#js-inspect-action-scheduled").addClass("hidden"); + $('#raise_defect_yes').prop('required', false); + } else { + $("#js-inspect-action-scheduled").removeClass("hidden"); + $('#raise_defect_yes').prop('required', true); + } + }); + }, + list_item_actions: function() { $('.item-list--reports').on('click', ':submit', function(e) { e.preventDefault(); diff --git a/web/cobrands/sass/_base.scss b/web/cobrands/sass/_base.scss index 07a2b88f8..a261c3b0a 100644 --- a/web/cobrands/sass/_base.scss +++ b/web/cobrands/sass/_base.scss @@ -2268,7 +2268,7 @@ table.nicetable { .segmented-control--radio { input { position: absolute; - left: -999px; + opacity: 0; } input:checked + label { |