forked from rse/componentjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomponent.plugin.debugger.js
29 lines (25 loc) · 1.14 KB
/
component.plugin.debugger.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
** ComponentJS -- Component System for JavaScript <http://componentjs.com>
** Copyright (c) 2009-2013 Ralf S. Engelschall <http://engelschall.com>
**
** This Source Code Form is subject to the terms of the Mozilla Public
** License, v. 2.0. If a copy of the MPL was not distributed with this
** file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
/*
* This is a graphical ComponentJS debugger which provides both a
* component tree visualization and a ComponentJS debug message
* console. As in a production environment one might not want to carry
* this functionality with the application, this functionality has to
* stay in a separate optional plugin, of course.
*/
/* global ComponentJS:false */
ComponentJS.plugin("debugger", function (_cs, $cs, GLOBAL) {
$include("component.plugin.debugger-jquery.js");
$include("component.plugin.debugger-view.js");
$include("component.plugin.debugger-logbook.js");
$include("component.plugin.debugger-infobox.js");
$include("component.plugin.debugger-window.js");
$include("component.plugin.debugger-render.js");
$include("component.plugin.debugger-hooks.js");
});