diff --git a/mobile/android/chrome/content/aboutApps.js b/mobile/android/chrome/content/aboutApps.js index 1482f0cc0c80..fce02de7a669 100644 --- a/mobile/android/chrome/content/aboutApps.js +++ b/mobile/android/chrome/content/aboutApps.js @@ -140,7 +140,7 @@ function onInstall(aEvent) { return; addApplication(aEvent.application); - document.getElementById("noapps").className = "hidden"; + document.getElementById("main-container").classList.remove("hidden"); } function onUninstall(aEvent) { @@ -149,6 +149,6 @@ function onUninstall(aEvent) { let parent = node.parentNode; parent.removeChild(node); if (!parent.firstChild) - document.getElementById("noapps").className = ""; + document.getElementById("main-container").classList.add("hidden"); } } diff --git a/mobile/android/chrome/content/aboutApps.xhtml b/mobile/android/chrome/content/aboutApps.xhtml index f1937ea3d66a..03bb27225d06 100644 --- a/mobile/android/chrome/content/aboutApps.xhtml +++ b/mobile/android/chrome/content/aboutApps.xhtml @@ -36,17 +36,22 @@
&aboutApps.header;
-
+
-
- + +