dojox
Version:
Dojo eXtensions, a rollup of many useful sub-projects and varying states of maturity – from very stable and robust, to alpha and experimental. See individual projects contain README files for details.
20 lines (17 loc) • 556 B
JavaScript
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.
});
});