source: Dev/trunk/src/client/dojox/widget/DailyCalendar.js @ 532

Last change on this file since 532 was 483, checked in by hendrikvanantwerpen, 11 years ago

Added Dojo 1.9.3 release.

File size: 361 bytes
Line 
1define([
2        "dojo/_base/declare",
3        "./_CalendarBase",
4        "./_CalendarDay"
5], function(declare, _CalendarBase, _CalendarDay){
6        return declare("dojox.widget.DailyCalendar", [_CalendarBase, _CalendarDay], {
7                // summary:
8                //              A calendar with only a daily view.
9                _makeDate: function(value){
10                        var now = new Date();
11                        now.setDate(value);
12                        return now;
13                }
14        });
15});
Note: See TracBrowser for help on using the repository browser.