final touches for 1.4.10
This commit is contained in:
parent
84ed4065da
commit
3079c2f1c3
5 changed files with 8 additions and 4 deletions
|
@ -1,4 +1,9 @@
|
||||||
|
|
||||||
|
version 1.4.10 (1/2/11)
|
||||||
|
- fixed bug with resizing event to different week in 5-day month view (issue 740)
|
||||||
|
- fixed bug with events not sticking after a removeEvents call (issue 757)
|
||||||
|
- fixed bug with underlying parseTime method, and other uses of parseInt (issue 688)
|
||||||
|
|
||||||
version 1.4.9 (11/16/10)
|
version 1.4.9 (11/16/10)
|
||||||
- new algorithm for vertically stacking events (issue 111)
|
- new algorithm for vertically stacking events (issue 111)
|
||||||
- resizing an event to a different week (issue 306)
|
- resizing an event to a different week (issue 306)
|
||||||
|
|
|
@ -76,7 +76,7 @@ function AgendaView(element, calendar, viewName) {
|
||||||
var head, body, bodyContent, bodyTable, bg;
|
var head, body, bodyContent, bodyTable, bg;
|
||||||
var colCnt;
|
var colCnt;
|
||||||
var slotCnt=0; // spanning all the way across
|
var slotCnt=0; // spanning all the way across
|
||||||
var axisWidth, colWidth, slotHeight;
|
var axisWidth, colWidth, slotHeight; // TODO: what if slotHeight changes? (see issue 650)
|
||||||
var viewWidth, viewHeight;
|
var viewWidth, viewHeight;
|
||||||
var savedScrollTop;
|
var savedScrollTop;
|
||||||
var tm, firstDay;
|
var tm, firstDay;
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
},
|
},
|
||||||
weekends: false,
|
weekends: false,
|
||||||
//firstDay: 1,
|
//firstDay: 1,
|
||||||
isRTL: true,
|
//isRTL: true,
|
||||||
editable: true,
|
editable: true,
|
||||||
events: [
|
events: [
|
||||||
{
|
{
|
||||||
|
|
|
@ -18,7 +18,6 @@
|
||||||
right: 'month,agendaWeek,basicWeek,agendaDay,basicDay'
|
right: 'month,agendaWeek,basicWeek,agendaDay,basicDay'
|
||||||
},
|
},
|
||||||
editable: true,
|
editable: true,
|
||||||
//isRTL: true,
|
|
||||||
events: [
|
events: [
|
||||||
{
|
{
|
||||||
title: 'All Day Event',
|
title: 'All Day Event',
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
1.4.9
|
1.4.10
|
||||||
|
|
Loading…
Reference in a new issue