source: Dev/trunk/src/client/dojox/widget/_CalendarDay.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: 375 bytes
Line 
1define([
2        "dojo/_base/declare",
3        "./_CalendarDayView"
4], function(declare, _CalendarDayView){
5        return declare("dojox.widget._CalendarDay", null, {
6                // summary:
7                //              Mixin for the dojox.widget.Calendar which provides
8                //              the standard day-view. A single month is shown at a time.
9                parent: null,
10
11                constructor: function(){
12                        this._addView(_CalendarDayView);
13                }
14        });
15});
Note: See TracBrowser for help on using the repository browser.