Index: chrome/browser/resources/ntp4/apps_page.js |
diff --git a/chrome/browser/resources/ntp4/apps_page.js b/chrome/browser/resources/ntp4/apps_page.js |
index 8e4772685db18fbe2ad4c7534d67868de49795ae..80fbee21c8c0dcb401f5432b7706f87801b4492e 100644 |
--- a/chrome/browser/resources/ntp4/apps_page.js |
+++ b/chrome/browser/resources/ntp4/apps_page.js |
@@ -390,10 +390,12 @@ cr.define('ntp', function() { |
/** |
* Invoked when an app is clicked. |
- * @param {Event} e The click/auxclick event. |
+ * @param {MouseEvent} e The click/auxclick event. |
* @private |
*/ |
onClick_: function(e) { |
+ if (e.button > 1) return; |
+ |
var url = !this.appData_.is_webstore ? '' : |
appendParam(this.appData_.url, |
'utm_source', |