From a86c6714ac38e4fa681875175767c64bab80ec37 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Cheng=20=28=E9=84=AD=E9=83=81=E9=82=A6=29?= Date: Mon, 25 Feb 2013 21:13:51 +0800 Subject: [PATCH] Report portal links to "Contact Us" directly --- code/utils_misc.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/utils_misc.js b/code/utils_misc.js index 8600a0ed..c646aef3 100644 --- a/code/utils_misc.js +++ b/code/utils_misc.js @@ -97,7 +97,7 @@ window.rangeLinkClick = function() { } window.reportPortalIssue = function(info) { - var t = 'Redirecting you to a Google Help Page. Once there, click on “Contact Us” in the upper right corner.\n\nThe text box contains all necessary information. Press CTRL+C to copy it.'; + var t = 'Redirecting you to a Google Help Page.\n\nThe text box contains all necessary information. Press CTRL+C to copy it.'; var d = window.portals[window.selectedPortal].options.details; var info = 'Your Nick: ' + PLAYER.nickname + ' ' @@ -107,7 +107,7 @@ window.reportPortalIssue = function(info) { //codename, approx addr, portalname if(prompt(t, info) !== null) - location.href = 'https://support.google.com/ingress?hl=en'; + location.href = 'https://support.google.com/ingress?hl=en&contact=1'; } window._storedPaddedBounds = undefined;