source: Dev/trunk/src/client/dijit/dijit-all.js @ 512

Last change on this file since 512 was 483, checked in by hendrikvanantwerpen, 11 years ago

Added Dojo 1.9.3 release.

File size: 1.6 KB
Line 
1define([
2        "./main",
3        "./dijit",
4        "./ColorPalette",
5        "./Declaration",
6        "./Dialog",
7        "./DialogUnderlay",
8        "./TooltipDialog",
9        "./Editor",
10        "./_editor/plugins/FontChoice",
11        "./_editor/plugins/LinkDialog",
12        "./Menu",
13        "./MenuItem",
14        "./PopupMenuItem",
15        "./CheckedMenuItem",
16        "./MenuBar",
17        "./MenuBarItem",
18        "./PopupMenuBarItem",
19        "./MenuSeparator",
20        "./ProgressBar",
21        "./TitlePane",
22        "./Toolbar",
23        "./Tooltip",
24        "./Tree",
25        "./InlineEditBox",
26        "./form/Form",
27        "./form/Button",
28        "./form/DropDownButton",
29        "./form/ComboButton",
30        "./form/ToggleButton",
31        "./form/CheckBox",
32        "./form/RadioButton",
33        "./form/TextBox",
34        "./form/ValidationTextBox",
35        "./form/CurrencyTextBox",
36        "./form/DateTextBox",
37        "./form/TimeTextBox",
38        "./form/NumberSpinner",
39        "./form/NumberTextBox",
40        "./form/ComboBox",
41        "./form/FilteringSelect",
42        "./form/MultiSelect",
43        "./form/Select",
44        "./form/HorizontalSlider",
45        "./form/VerticalSlider",
46        "./form/HorizontalRule",
47        "./form/VerticalRule",
48        "./form/HorizontalRuleLabels",
49        "./form/VerticalRuleLabels",
50        "./form/SimpleTextarea",
51        "./form/Textarea",
52        "./layout/AccordionContainer",
53        "./layout/ContentPane",
54        "./layout/BorderContainer",
55        "./layout/LayoutContainer",
56        "./layout/LinkPane",
57        "./layout/SplitContainer",
58        "./layout/StackContainer",
59        "./layout/TabContainer"
60], function(dijit){
61
62        // module:
63        //              dijit/dijit-all
64
65        /*=====
66        return {
67                // summary:
68                //              A rollup that includes every dijit. You probably don't need this.
69        };
70        =====*/
71
72        console.warn("dijit-all may include much more code than your application actually requires. We strongly recommend that you investigate a custom build or the web build tool");
73
74        return dijit;
75});
Note: See TracBrowser for help on using the repository browser.