polardbxengine/storage/ndb/mcc/frontend/dojo/dojox/widget/MonthlyCalendar.js.uncompre...

16 lines
402 B
JavaScript

define("dojox/widget/MonthlyCalendar", [
"dojo/_base/declare",
"./_CalendarBase",
"./_CalendarMonth"
], function(declare, _CalendarBase, _CalendarMonth){
return declare("dojox.widget.MonthlyCalendar", [_CalendarBase, _CalendarMonth], {
// summary:
// A calendar with only a month view.
_makeDate: function(value){
var now = new Date();
now.setMonth(value);
return now;
}
});
});