From 2540cb7a79ad9494696a64fa26cb18710ade69d5 Mon Sep 17 00:00:00 2001 From: Wes Johnston Date: Tue, 10 Jun 2014 12:47:27 -0700 Subject: [PATCH] Bug 1019613 - Fix click event ordering in about:apps. r=mfinkle --- mobile/android/chrome/content/aboutApps.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mobile/android/chrome/content/aboutApps.js b/mobile/android/chrome/content/aboutApps.js index a1c8cbbeba5..7113fa68b51 100644 --- a/mobile/android/chrome/content/aboutApps.js +++ b/mobile/android/chrome/content/aboutApps.js @@ -58,6 +58,9 @@ function onLoad(aEvent) { navigator.mozApps.mgmt.oninstall = onInstall; navigator.mozApps.mgmt.onuninstall = onUninstall; updateList(); + + // XXX - Hack to fix bug 985867 for now + document.addEventListener("touchstart", function() { }); } function updateList() {