Ver código fonte

odds and ends for 1.4.8 release

Adam Shaw 15 anos atrás
pai
commit
8086b3d252
6 arquivos alterados com 30 adições e 2 exclusões
  1. 13 0
      changelog.txt
  2. 6 0
      src/agenda/agenda.css
  3. 3 0
      src/common/util.js
  4. 1 1
      tests/iframe.html
  5. 1 1
      tests/options.html
  6. 6 0
      tests/sources.html

+ 13 - 0
changelog.txt

@@ -1,4 +1,17 @@
 
+version 1.4.8 (10/16/10)
+	- ignoreTimezone option (set to `false` to process UTC offsets in ISO8601 dates)
+	- bugfixes
+		- event refetching not being called under certain conditions (issues 417, 554)
+		- event refetching being called multiple times under certain conditions (issues 586, 616)
+		- selection cannot be triggered by right mouse button (issue 558)
+		- agenda view left axis sized incorrectly (issue 465)
+		- IE js error when calendar is too narrow (issue 517)
+		- agenda view looks strange when no scrollbars (issue 235)
+		- improved parsing of ISO8601 dates with UTC offsets
+	- $.fullCalendar.version
+	- an internal refactor of the code, for easier future development and modularity
+
 version 1.4.7 (7/5/10)
 	- "dropping" external objects onto the calendar
 		- droppable (boolean, to turn on/off)

+ 6 - 0
src/agenda/agenda.css

@@ -74,6 +74,12 @@
 	padding: 2px 2px 0; /* distance between events and day edges */
 	}
 	
+/* vertical background columns */
+
+.fc .fc-agenda-bg .ui-state-highlight {
+	background-image: none; /* tall column, don't want repeating background image */
+	}
+	
 
 
 /* Vertical Events

+ 3 - 0
src/common/util.js

@@ -151,6 +151,9 @@ function setOuterHeight(element, height, includeMargins) {
 }
 
 
+// TODO: curCSS has been deprecated
+
+
 function hsides(_element, includeMargins) {
 	return (parseFloat($.curCSS(_element, 'paddingLeft', true)) || 0) +
 	       (parseFloat($.curCSS(_element, 'paddingRight', true)) || 0) +

+ 1 - 1
tests/iframe.html

@@ -2,7 +2,7 @@
 <html>
 <head>
 <link rel='stylesheet' type='text/css' href='lib/fancybox/jquery.fancybox-1.2.6.css' />
-<script type='text/javascript' src='../lib/jquery-1.4.2.min.js'></script>
+<script type='text/javascript' src='../lib/jquery-1.4.3.min.js'></script>
 <script type='text/javascript' src='lib/fancybox/jquery.fancybox-1.2.6.pack.js'></script>
 <script type='text/javascript'>
 

+ 1 - 1
tests/options.html

@@ -75,7 +75,7 @@
 			//dayClick: function(date) {
 			//	console.log(date);
 			//},
-			isRTL: true,
+			//isRTL: true,
 			
 			events: [
 				{

+ 6 - 0
tests/sources.html

@@ -41,6 +41,11 @@
 			start: y + '-06-06 11:30:00',
 			allDay: false
 		},
+		{
+			title: 'O event',
+			start: y + '-06-06T10:20:00-02:00',
+			allDay: false
+		},
 		{
 			id: 999,
 			title: 'Repeating Event',
@@ -102,6 +107,7 @@
 
 	$(document).ready(function() {
 		cal = $('#calendar').fullCalendar({
+			ignoreTimezone: false,
 			//lazyFetching: false,
 			editable: true,
 			header: {