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.
13 lines
363 B
13 lines
363 B
define([ |
|
"dojo/_base/kernel", |
|
"dojo/_base/declare", |
|
"./CalendarFisheye", |
|
"./_FisheyeFX" |
|
], function(kernel, declare, CalendarFisheye, _FisheyeFX){ |
|
kernel.experimental("dojox/widget/CalendarFx"); |
|
|
|
return declare("dojox.widget.CalendarFx", [CalendarFisheye, _FisheyeFX], { |
|
// summary: |
|
// The visual effects extensions for dojox/widget/Calendar. |
|
}); |
|
});
|
|
|