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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
//>>built
define("dojox/mobile/mobile-all", [
"./_base",
"./compat",
"./Button",
"./Carousel",
"./CheckBox",
"./ComboBox",
"./ContentPane",
"./EdgeToEdgeDataList",
"./ExpandingTextArea",
"./FixedSplitter",
"./FixedSplitterPane",
"./FlippableView",
"./IconContainer",
"./IconItem",
"./Opener",
"./Overlay",
"./PageIndicator",
"./RadioButton",
"./RoundRectDataList",
"./ScrollableView",
"./Slider",
"./SpinWheel",
"./SpinWheelDatePicker",
"./SpinWheelSlot",
"./SpinWheelTimePicker",
"./SwapView",
"./Switch",
"./TabBar",
"./TabBarButton",
"./TextArea",
"./TextBox",
"./ToggleButton",
"./Tooltip",
"./transition",
"./TransitionEvent",
"./ViewController"
], function(common){
// module:
// dojox/mobile/mobile-all
// summary:
// A rollup that includes every mobile module. You probably don't need this.
console.warn("mobile-all may include much more code than your application actually requires. We strongly recommend that you investigate a custom build.");
return common;
});
|