REmove stray '}' that causes a JS error. Bug 227623, r=neil, sr=alecf, a=dbaron

git-svn-id: svn://10.0.0.236/trunk@150127 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
bzbarsky%mit.edu 2003-12-07 18:54:59 +00:00
parent 54e7184e7b
commit ce79df3ccf

View File

@ -60,12 +60,11 @@ function javascriptEnabledChange(){
}
function Startup(){
//If we don't have a checkbox under groupbox pluginPreferences, we should hide it
var pluginGroup = document.getElementById("pluginPreferences")
var children = pluginGroup.childNodes;
if (!children || children.length <= 1) // 1 for the caption
pluginGroup.setAttribute("hidden", "true");
}
//If we don't have a checkbox under groupbox pluginPreferences, we should hide it
var pluginGroup = document.getElementById("pluginPreferences");
var children = pluginGroup.childNodes;
if (!children || children.length <= 1) // 1 for the caption
pluginGroup.setAttribute("hidden", "true");
javascriptEnabledChange();
}