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
361 B
15 lines
361 B
define([ |
|
"dojo/_base/declare", |
|
"./_CalendarBase", |
|
"./_CalendarDay" |
|
], function(declare, _CalendarBase, _CalendarDay){ |
|
return declare("dojox.widget.DailyCalendar", [_CalendarBase, _CalendarDay], { |
|
// summary: |
|
// A calendar with only a daily view. |
|
_makeDate: function(value){ |
|
var now = new Date(); |
|
now.setDate(value); |
|
return now; |
|
} |
|
}); |
|
});
|
|
|