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.
18 lines (15 loc) • 438 B
JavaScript
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.
});
});