NOBUG: Fixed very minor JS bug

This commit is contained in:
Sam Hemelryk 2010-08-13 07:24:24 +00:00
parent 7126772325
commit 9badf21588

View File

@ -65,7 +65,7 @@ function main_class() {
//things to process onload
onloadobj.add('main.process_document();');
onloadobj.add("document.getElementById('content').style.display='block';");
onloadobj.add("if (document.getElementById('content')) document.getElementById('content').style.display='block';");
//connection queue allows xhttp requests to be sent in order
this.connectQueue = [];