source: Dev/trunk/src/client/dojox/widget/Calendar3Pane.js @ 529

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

Added Dojo 1.9.3 release.

File size: 400 bytes
Line 
1define([
2        "dojo/_base/declare",
3        "./_CalendarBase",
4        "./_CalendarDay",
5        "./_CalendarMonth",
6        "./_CalendarYear"
7        ], function(declare, _CalendarBase, _CalendarDay, _CalendarMonth, _CalendarYear){
8                return declare("dojox.widget.Calendar3Pane", [_CalendarBase, _CalendarDay, _CalendarMonth, _CalendarYear], {
9                        // summary:
10                        //              A Calendar with three panes, includes day, month, and year views
11        });
12});
Note: See TracBrowser for help on using the repository browser.