-
Notifications
You must be signed in to change notification settings - Fork 187
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add some missing dependencies. unfortunately this is causing load err…
…ors in themeTester.html. refs #12672 git-svn-id: http://svn.dojotoolkit.org/src/dijit/trunk@24340 560b804f-0ae3-0310-86f3-f6aa0a117693
- Loading branch information
Showing
2 changed files
with
69 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,76 +1,70 @@ | ||
define([ | ||
"dojo", | ||
".", | ||
"./dijit", | ||
"./ColorPalette", | ||
"./Declaration", | ||
"./Dialog", | ||
"./DialogUnderlay", | ||
"./TooltipDialog", | ||
"./Editor", | ||
"./_editor/plugins/FontChoice", | ||
"./_editor/plugins/LinkDialog", | ||
"./Menu", | ||
"./MenuItem", | ||
"./PopupMenuItem", | ||
"./MenuBar", | ||
"./MenuBarItem", | ||
"./PopupMenuBarItem", | ||
"./MenuSeparator", | ||
"./ProgressBar", | ||
"./TitlePane", | ||
"./Toolbar", | ||
"./Tooltip", | ||
"./Tree", | ||
"./InlineEditBox", | ||
"./form/Form", | ||
"./form/Button", | ||
"./form/DropDownButton", | ||
"./form/ComboButton", | ||
"./form/ToggleButton", | ||
"./form/CheckBox", | ||
"./form/RadioButton", | ||
"./form/TextBox", | ||
"./form/ValidationTextBox", | ||
"./form/CurrencyTextBox", | ||
"./form/DateTextBox", | ||
"./form/NumberSpinner", | ||
"./form/NumberTextBox", | ||
"./form/ComboBox", | ||
"./form/FilteringSelect", | ||
"./form/MultiSelect", | ||
"./form/Select", | ||
"./form/HorizontalSlider", | ||
"./form/VerticalSlider", | ||
"./form/HorizontalRule", | ||
"./form/VerticalRule", | ||
"./form/HorizontalRuleLabels", | ||
"./form/VerticalRuleLabels", | ||
"./form/SimpleTextarea", | ||
"./form/Textarea", | ||
"./layout/AccordionContainer", | ||
"./layout/ContentPane", | ||
"./layout/BorderContainer", | ||
"./layout/LayoutContainer", | ||
"./layout/LinkPane", | ||
"./layout/SplitContainer", | ||
"./layout/StackContainer", | ||
"./layout/TabContainer"], function(dojo, dijit) { | ||
// module: | ||
// dijit/dijit-all | ||
// summary: | ||
// TODOC | ||
// | ||
"dojo", | ||
".", | ||
"./dijit", | ||
"./ColorPalette", | ||
"./Declaration", | ||
"./Dialog", | ||
"./DialogUnderlay", | ||
"./TooltipDialog", | ||
"./Editor", | ||
"./_editor/plugins/FontChoice", | ||
"./_editor/plugins/LinkDialog", | ||
"./Menu", | ||
"./MenuItem", | ||
"./PopupMenuItem", | ||
"./CheckedMenuItem", | ||
"./MenuBar", | ||
"./MenuBarItem", | ||
"./PopupMenuBarItem", | ||
"./MenuSeparator", | ||
"./ProgressBar", | ||
"./TitlePane", | ||
"./Toolbar", | ||
"./Tooltip", | ||
"./Tree", | ||
"./InlineEditBox", | ||
"./form/Form", | ||
"./form/Button", | ||
"./form/DropDownButton", | ||
"./form/ComboButton", | ||
"./form/ToggleButton", | ||
"./form/CheckBox", | ||
"./form/RadioButton", | ||
"./form/TextBox", | ||
"./form/ValidationTextBox", | ||
"./form/CurrencyTextBox", | ||
"./form/DateTextBox", | ||
"./form/TimeTextBox", | ||
"./form/NumberSpinner", | ||
"./form/NumberTextBox", | ||
"./form/ComboBox", | ||
"./form/FilteringSelect", | ||
"./form/MultiSelect", | ||
"./form/Select", | ||
"./form/HorizontalSlider", | ||
"./form/VerticalSlider", | ||
"./form/HorizontalRule", | ||
"./form/VerticalRule", | ||
"./form/HorizontalRuleLabels", | ||
"./form/VerticalRuleLabels", | ||
"./form/SimpleTextarea", | ||
"./form/Textarea", | ||
"./layout/AccordionContainer", | ||
"./layout/ContentPane", | ||
"./layout/BorderContainer", | ||
"./layout/LayoutContainer", | ||
"./layout/LinkPane", | ||
"./layout/SplitContainer", | ||
"./layout/StackContainer", | ||
"./layout/TabContainer"], function(dojo, dijit) { | ||
|
||
|
||
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"); | ||
|
||
/*===== | ||
dijit["dijit-all"] = { | ||
// module: | ||
// dijit/dijit-all | ||
// summary: | ||
// A rollup that includes every dijit. You probably don't need this. | ||
}; | ||
=====*/ | ||
|
||
return dijit; | ||
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"); | ||
|
||
return dijit; | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters