You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
375 B
15 lines
375 B
define([ |
|
"dojo/_base/declare", |
|
"./_CalendarDayView" |
|
], function(declare, _CalendarDayView){ |
|
return declare("dojox.widget._CalendarDay", null, { |
|
// summary: |
|
// Mixin for the dojox.widget.Calendar which provides |
|
// the standard day-view. A single month is shown at a time. |
|
parent: null, |
|
|
|
constructor: function(){ |
|
this._addView(_CalendarDayView); |
|
} |
|
}); |
|
});
|
|
|