source: Dev/trunk/src/client/dojox/widget/_CalendarMonthYear.js @ 485

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

Added Dojo 1.9.3 release.

File size: 461 bytes
Line 
1define([
2        "dojo/_base/declare",
3        "./_CalendarMonthYearView"
4], function(declare, _CalendarMonthYearView){
5        return declare("dojox.widget._CalendarMonthYear", null, {
6                // summary:
7                //              Mixin class for adding a view listing all 12
8                //              months of the year to the dojox/widget/_CalendarBase
9
10                constructor: function(){
11                        // summary:
12                        //              Adds a dojox/widget/_CalendarMonthView view to the calendar widget.
13                        this._addView(_CalendarMonthYearView);
14                }
15        });
16});
Note: See TracBrowser for help on using the repository browser.