Subversion Repositories Applications.papyrus

Rev

Rev 1318 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1318 Rev 1422
1
/*
1
/*
2
	Copyright (c) 2004-2006, The Dojo Foundation
2
	Copyright (c) 2004-2006, The Dojo Foundation
3
	All Rights Reserved.
3
	All Rights Reserved.
4
 
4
 
5
	Licensed under the Academic Free License version 2.1 or above OR the
5
	Licensed under the Academic Free License version 2.1 or above OR the
6
	modified BSD license. For more information on Dojo licensing, see:
6
	modified BSD license. For more information on Dojo licensing, see:
7
 
7
 
8
		http://dojotoolkit.org/community/licensing.shtml
8
		http://dojotoolkit.org/community/licensing.shtml
9
*/
9
*/
-
 
10
 
-
 
11
 
10
 
12
 
11
dojo.provide("dojo.widget.DebugConsole");
13
dojo.provide("dojo.widget.DebugConsole");
12
dojo.require("dojo.widget.Widget");
14
dojo.require("dojo.widget.Widget");
13
dojo.require("dojo.widget.*");
15
dojo.require("dojo.widget.*");
14
dojo.require("dojo.widget.FloatingPane");
16
dojo.require("dojo.widget.FloatingPane");
15
dojo.widget.defineWidget("dojo.widget.DebugConsole", dojo.widget.FloatingPane, {fillInTemplate:function () {
17
dojo.widget.defineWidget("dojo.widget.DebugConsole", dojo.widget.FloatingPane, {fillInTemplate:function () {
16
	dojo.widget.DebugConsole.superclass.fillInTemplate.apply(this, arguments);
18
	dojo.widget.DebugConsole.superclass.fillInTemplate.apply(this, arguments);
17
	this.containerNode.id = "debugConsoleClientPane";
19
	this.containerNode.id = "debugConsoleClientPane";
18
	djConfig.isDebug = true;
20
	djConfig.isDebug = true;
19
	djConfig.debugContainerId = this.containerNode.id;
21
	djConfig.debugContainerId = this.containerNode.id;
20
}});
22
}});
21
 
23