| 12345678910111213141516171819202122 |
- fcViews.basic = {
- 'class': BasicView
- };
- fcViews.basicDay = {
- type: 'basic',
- duration: { days: 1 }
- };
- fcViews.basicWeek = {
- type: 'basic',
- duration: { weeks: 1 }
- };
- fcViews.month = {
- 'class': MonthView,
- duration: { months: 1 }, // important for prev/next
- defaults: {
- fixedWeekCount: true
- }
- };
|