diff options
author | Struan Donald <struan@exo.org.uk> | 2019-04-04 12:55:46 +0100 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2019-04-05 16:31:41 +0100 |
commit | e3d40d97118cf8f5d4502c4433f26c646e4efc52 (patch) | |
tree | 07700e722b5ba830d7309e532566cf8ef51038fa /web | |
parent | 70785295a48d8150c8e816613d3c2ae7f750df32 (diff) |
[Northamptonshire] do not show emergency message for HE roads
Diffstat (limited to 'web')
-rw-r--r-- | web/cobrands/northamptonshire/assets.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/cobrands/northamptonshire/assets.js b/web/cobrands/northamptonshire/assets.js index fa0a3a6b2..5694c4def 100644 --- a/web/cobrands/northamptonshire/assets.js +++ b/web/cobrands/northamptonshire/assets.js @@ -572,7 +572,7 @@ function check_emergency() { var currently_shown = !!$('#northants-emergency-message').length; var body = $('#form_category').data('body'); - if (relevant === currently_shown || body) { + if (relevant === currently_shown || body || fixmystreet.body_overrides.get_only_send() == 'Highways England') { // Either should be shown and already is, or shouldn't be shown and isn't return; } |