_base.js 530 B

123456789101112131415161718192021
  1. define("dojox/mobile/_base", [
  2. "./common",
  3. "./View",
  4. "./Heading",
  5. "./RoundRect",
  6. "./RoundRectCategory",
  7. "./EdgeToEdgeCategory",
  8. "./RoundRectList",
  9. "./EdgeToEdgeList",
  10. "./ListItem",
  11. "./Switch",
  12. "./ToolBarButton",
  13. "./ProgressIndicator"
  14. ], function(common, View, Heading, RoundRect, RoundRectCategory, EdgeToEdgeCategory, RoundRectList, EdgeToEdgeList, ListItem, Switch, ToolBarButton, ProgressIndicator){
  15. // module:
  16. // dojox/mobile/_base
  17. // summary:
  18. // Includes the basic dojox.mobile modules
  19. return common;
  20. });