From 3ab5eb366cf4e61841b85622ed785396c5d8b503 Mon Sep 17 00:00:00 2001 From: "ccooper%deadsquid.com" Date: Wed, 28 Jun 2006 19:10:41 +0000 Subject: [PATCH] - add missing brace git-svn-id: svn://10.0.0.236/trunk@201124 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/webtools/litmus/js/SelectBoxes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/webtools/litmus/js/SelectBoxes.js b/mozilla/webtools/litmus/js/SelectBoxes.js index 45370c02214..3d569a97ee2 100755 --- a/mozilla/webtools/litmus/js/SelectBoxes.js +++ b/mozilla/webtools/litmus/js/SelectBoxes.js @@ -37,7 +37,7 @@ function load_testgroups(selects) { addNullEntry(groupbox); // find the currently selected product that goes with this select var productbox = document.getElementById("product"+groupbox.name.substr(9)); - if (productbox.selectedIndex >= 0) + if (productbox.selectedIndex >= 0) { var productid = productbox.options[productbox.selectedIndex].value; var product = getProductById(productid); if (!product) {