source: Dev/trunk/src/client/dojox/widget/_CalendarYear.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: 464 bytes
Line 
1define([
2        "dojo/_base/declare",
3        "./_CalendarYearView"
4], function(declare, _CalendarYearView){
5        return declare("dojox.widget._CalendarYear", null, {
6                // summary:
7                //              Mixin class for adding a view listing 12 years to the
8                //              dojox/widget/_CalendarBase
9
10                parent: null,
11
12                constructor: function(){
13                        // summary:
14                        //              Adds a dojox/widget/_CalendarYearView view to the
15                        //              dojo/widget/_CalendarBase widget.
16                        this._addView(_CalendarYearView);
17                }
18        });
19});
Note: See TracBrowser for help on using the repository browser.