From fa0994bd69de24b149eaa2ef9b9b0fbd15505f2a Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Mon, 29 Dec 2008 13:55:28 -0500 Subject: [PATCH] Fix style.minWidth = undefined --- common/content/ui.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/content/ui.js b/common/content/ui.js index 458a353a..8f7082fb 100644 --- a/common/content/ui.js +++ b/common/content/ui.js @@ -1494,7 +1494,7 @@ function ItemList(id) //{{{ minHeight = Math.max(minHeight, divNodes.completions.getBoundingClientRect().bottom); container.height = minHeight; if (container.collapsed) - div.style.minWidth = undefined; + div.style.minWidth = ""; // FIXME: Belongs elsewhere. commandline.updateOutputHeight(false); }