You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
438 B
17 lines
438 B
define([ |
|
"dojo/_base/declare", |
|
"./Carousel", |
|
"./_StoreMixin" |
|
], function(declare, Carousel, StoreMixin){ |
|
|
|
// module: |
|
// dojox/mobile/StoreCarousel |
|
|
|
return declare("dojox.mobile.StoreCarousel", [Carousel, StoreMixin], { |
|
// summary: |
|
// A dojo/store enabled Carousel. |
|
// description: |
|
// StoreCarousel is a subclass of dojox/mobile/Carousel which |
|
// can generate contents according to the given dojo/store store. |
|
}); |
|
});
|
|
|