bugfixes and minor enhancements for 1.4.2

- eventAfterRender
- getView
- displaying in iframe (also added tests)
- render method now adjusts calendar's size too
- day-of-week classnames fixed when firstDay=1
- leave more space on side event events in agenda views
- "T" optional in ISO8601 events
This commit is contained in:
Adam Shaw
2009-11-28 20:43:02 -08:00
parent 559928cec8
commit dbdbafd35d
33 changed files with 1029 additions and 34 deletions
+11 -1
View File
@@ -25,6 +25,16 @@
start: new Date(y, m, d-5),
end: new Date(y, m, d-2)
},
{
title: 'T event',
start: y + '-06-06T10:20:00',
allDay: false
},
{
title: 'No T event',
start: y + '-06-06 11:30:00',
allDay: false
},
{
id: 999,
title: 'Repeating Event',
@@ -137,4 +147,4 @@
</p>
<div id='calendar' style='width:900px;margin:20px auto 0;font-family:arial'></div>
</body>
</html>
</html>