diff options
-rw-r--r-- | web/cobrands/fixmystreet/fixmystreet.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/web/cobrands/fixmystreet/fixmystreet.js b/web/cobrands/fixmystreet/fixmystreet.js index fb5ae5c84..c13bf5c46 100644 --- a/web/cobrands/fixmystreet/fixmystreet.js +++ b/web/cobrands/fixmystreet/fixmystreet.js @@ -796,6 +796,9 @@ $.extend(fixmystreet.set_up, { } $('.report-a-problem-btn').on('click', function(e){ + if (e.metaKey || e.ctrlKey) { + return; + } var url = this.href; if ( url.indexOf('report/new') > -1 ) { try { |