1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-24 08:52:27 +01:00

Fix style.minWidth = undefined

This commit is contained in:
Kris Maglione
2008-12-29 13:55:28 -05:00
parent bd2c0f25c6
commit fa0994bd69

View File

@@ -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);
}