dojox
Version:
Dojo eXtensions, a rollup of many useful sub-projects and varying states of maturity – from very stable and robust, to alpha and experimental. See individual projects contain README files for details.
16 lines (14 loc) • 375 B
JavaScript
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);
}
});
});