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.
19 lines
556 B
19 lines
556 B
define([ |
|
"dojo/_base/kernel", |
|
"dojo/_base/declare", |
|
"./Carousel", |
|
"./_DataMixin" |
|
], function(kernel, declare, Carousel, DataMixin){ |
|
|
|
// module: |
|
// dojox/mobile/DataCarousel |
|
|
|
kernel.deprecated("dojox/mobile/DataCarousel", "Use dojox/mobile/StoreCarousel instead", 2.0); |
|
return declare("dojox.mobile.DataCarousel", [Carousel, DataMixin], { |
|
// summary: |
|
// A dojo/data-enabled Carousel. |
|
// description: |
|
// DataCarousel is a subclass of dojox/mobile/Carousel which |
|
// can generate contents according to the given dojo/data store. |
|
}); |
|
});
|
|
|