source:
Dev/trunk/src/client/dojox/widget/_CalendarDay.js
Last change on this file was 483, checked in by hendrikvanantwerpen, 11 years ago | |
---|---|
File size: 375 bytes |
Rev | Line | |
---|---|---|
[483] | 1 | define([ |
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.