diff options
-rw-r--r-- | web/cobrands/fixmystreet/fixmystreet.js | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/web/cobrands/fixmystreet/fixmystreet.js b/web/cobrands/fixmystreet/fixmystreet.js index ceee52160..48ae83103 100644 --- a/web/cobrands/fixmystreet/fixmystreet.js +++ b/web/cobrands/fixmystreet/fixmystreet.js @@ -837,10 +837,8 @@ $.extend(fixmystreet.set_up, { map_controls: function() { //add links container (if its not there) - if (fixmystreet.cobrand != 'zurich') { - if ($('#sub_map_links').length === 0) { - $('<p class="sub-map-links" id="sub_map_links" />').insertAfter($('#map')); - } + if ($('#sub_map_links').length === 0) { + $('<p class="sub-map-links" id="sub_map_links" />').insertAfter($('#map')); } if ($('.mobile').length) { |