source: Dev/trunk/src/client/dojox/mobile/StoreCarousel.js @ 532

Last change on this file since 532 was 483, checked in by hendrikvanantwerpen, 11 years ago

Added Dojo 1.9.3 release.

File size: 438 bytes
Line 
1define([
2        "dojo/_base/declare",
3        "./Carousel",
4        "./_StoreMixin"
5], function(declare, Carousel, StoreMixin){
6
7        // module:
8        //              dojox/mobile/StoreCarousel
9
10        return declare("dojox.mobile.StoreCarousel", [Carousel, StoreMixin], {
11                // summary:
12                //              A dojo/store enabled Carousel.
13                // description:
14                //              StoreCarousel is a subclass of dojox/mobile/Carousel which
15                //              can generate contents according to the given dojo/store store.
16        });
17});
Note: See TracBrowser for help on using the repository browser.