From ee53160e6763ff1a2af0b53135a44e89c468c6cc Mon Sep 17 00:00:00 2001 From: Wes Johnston Date: Fri, 2 Sep 2011 12:35:38 -0700 Subject: [PATCH] Bug 684276 - Wrap labels in Android tablet menu. r=mbrubeck --- mobile/chrome/content/AppMenu.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mobile/chrome/content/AppMenu.js b/mobile/chrome/content/AppMenu.js index 6e499ed6115..78133b7707f 100644 --- a/mobile/chrome/content/AppMenu.js +++ b/mobile/chrome/content/AppMenu.js @@ -50,7 +50,7 @@ var AppMenu = { item.onclick = function() { child.click(); } let label = document.createElement("label"); - label.setAttribute("value", child.label); + label.textContent = child.label; item.appendChild(label); if (item.classList.contains("appmenu-pageaction"))