From: cap2501 Date: Sun, 17 Sep 2006 17:48:27 +0000 (+0000) Subject: cleaned up some formatting X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=8a66975e84125141a993c11c66773b8d79eca3c9;p=moodle.git cleaned up some formatting --- diff --git a/course/format/topics/ajaxcourse-topics.js b/course/format/topics/ajaxcourse-topics.js index ac0acdc457..1371066cae 100644 --- a/course/format/topics/ajaxcourse-topics.js +++ b/course/format/topics/ajaxcourse-topics.js @@ -30,33 +30,33 @@ var onload = new onload_class(); //main page object function main_class(){ - this.portal = new php_portal_class(); + this.portal = new php_portal_class(); - this.blocks = new Array(); + this.blocks = new Array(); this.sections = new Array(); - this.leftcolumn = null; - this.rightcolumn = null; - this.adminBlock = null; + this.leftcolumn = null; + this.rightcolumn = null; + this.adminBlock = null; //if you use firefox the firebug extension will show log contents otherwise uncomment to view - //this.logview = new YAHOO.widget.LogReader(document.body.appendChild(document.createElement('div'))); + //this.logview = new YAHOO.widget.LogReader('header'); - this.icons = []; - this.marker = null; + this.icons = []; + this.marker = null; //things to process onload - onload.add('main.process_document();'); - onload.add("document.getElementById('content').style.display='block';"); + onload.add('main.process_document();'); + onload.add("document.getElementById('content').style.display='block';"); //connection queue allows xhttp requests to be sent in order this.connectQueue = []; - this.connectQueueHead = 0; - this.connectQueueConnection = null; + this.connectQueueHead = 0; + this.connectQueueConnection = null; - this.debug = true; + this.debug = true; }