1318 |
alexandre_ |
1 |
/*
|
|
|
2 |
Copyright (c) 2004-2006, The Dojo Foundation
|
|
|
3 |
All Rights Reserved.
|
|
|
4 |
|
|
|
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:
|
|
|
7 |
|
|
|
8 |
http://dojotoolkit.org/community/licensing.shtml
|
|
|
9 |
*/
|
|
|
10 |
|
1422 |
alexandre_ |
11 |
|
|
|
12 |
|
1318 |
alexandre_ |
13 |
dojo.provide("dojo.widget.DebugConsole");
|
|
|
14 |
dojo.require("dojo.widget.Widget");
|
|
|
15 |
dojo.require("dojo.widget.*");
|
|
|
16 |
dojo.require("dojo.widget.FloatingPane");
|
|
|
17 |
dojo.widget.defineWidget("dojo.widget.DebugConsole", dojo.widget.FloatingPane, {fillInTemplate:function () {
|
|
|
18 |
dojo.widget.DebugConsole.superclass.fillInTemplate.apply(this, arguments);
|
|
|
19 |
this.containerNode.id = "debugConsoleClientPane";
|
|
|
20 |
djConfig.isDebug = true;
|
|
|
21 |
djConfig.debugContainerId = this.containerNode.id;
|
|
|
22 |
}});
|
|
|
23 |
|