diff options
Diffstat (limited to 'remoting/webapp/crd/js/feedback.js')
-rw-r--r-- | remoting/webapp/crd/js/feedback.js | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/remoting/webapp/crd/js/feedback.js b/remoting/webapp/crd/js/feedback.js index e738ecf..fe71cde 100644 --- a/remoting/webapp/crd/js/feedback.js +++ b/remoting/webapp/crd/js/feedback.js @@ -16,9 +16,8 @@ var remoting = remoting || {}; */ remoting.manageHelpAndFeedback = function(container) { var showHelp = function() { - window.open('https://www.google.com/support/chrome/bin/answer.py?' + - 'answer=1649523'); - } + window.open('https://support.google.com/chrome/answer/1649523'); + }; var helpButton = container.querySelector('.menu-help'); base.debug.assert(helpButton != null); helpButton.addEventListener('click', showHelp, false); @@ -51,4 +50,4 @@ remoting.sendFeedback_ = function() { }; var kFeedbackExtensionId = 'gfdkimpbcpahaombhbimeihdjnejgicl'; chrome.runtime.sendMessage(kFeedbackExtensionId, message, function() {}); -};
\ No newline at end of file +}; |