Ver código fonte

final touches for 1.4.10

Adam Shaw 15 anos atrás
pai
commit
3079c2f1c3

+ 5 - 0
changelog.txt

@@ -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)

+ 1 - 1
src/agenda/AgendaView.js

@@ -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;

+ 1 - 1
tests/issue_740_event_resizing.html

@@ -19,7 +19,7 @@
 			},
 			},
 			weekends: false,
 			weekends: false,
 			//firstDay: 1,
 			//firstDay: 1,
-			isRTL: true,
+			//isRTL: true,
 			editable: true,
 			editable: true,
 			events: [
 			events: [
 				{
 				{

+ 0 - 1
tests/plain.html

@@ -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
version.txt

@@ -1 +1 @@
-1.4.9
+1.4.10