UNPKG

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 (15 loc) 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; } }); });