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