Adam Shaw 16 лет назад
Родитель
Сommit
deed716b67
8 измененных файлов с 20 добавлено и 7 удалено
  1. 12 0
      changelog.txt
  2. 0 0
      tests/jquery-1.4.1.min.js
  3. 0 0
      tests/jquery-uncompressed.js
  4. 3 2
      tests/loader.js
  5. 3 2
      tests/methods.html
  6. 1 1
      tests/options.html
  7. 0 1
      tests/plain.html
  8. 1 1
      version.txt

+ 12 - 0
changelog.txt

@@ -1,4 +1,16 @@
 
 
+version 1.4.5 (2/21/09)
+	- lazyFetching option, which can force the calendar to fetch events on every view/date change
+	- scroll state of agenda views are preserved when switching back to view
+	- bugfixes
+		- calling methods on an uninitialized fullcalendar throws error
+		- IE6/7 bug where an entire view becomes invisible (issue 320)
+		- error when rendering a hidden calendar (in jquery ui tabs for example) in IE (issue 340)
+		- interconnected bugs related to calendar resizing and scrollbars
+			- when switching views or clicking prev/next, calendar would "blink" (issue 333)
+			- liquid-width calendar's events shifted (depending on initial height of browser) (issue 341)
+			- more robust underlying algorithm for calendar resizing
+
 version 1.4.4 (2/3/10)
 version 1.4.4 (2/3/10)
 	- optimized event rendering in all views (events render in 1/10 the time)
 	- optimized event rendering in all views (events render in 1/10 the time)
 	- gotoDate() does not force the calendar to unnecessarily rerender
 	- gotoDate() does not force the calendar to unnecessarily rerender

+ 0 - 0
src/jquery/jquery-1.4.1.min.js → tests/jquery-1.4.1.min.js


+ 0 - 0
src/jquery/jquery-uncompressed.js → tests/jquery-uncompressed.js


+ 3 - 2
tests/loader.js

@@ -63,8 +63,9 @@ else if (_build) {
 	includeJS('../build/fullcalendar/jquery/ui.resizable.js');
 	includeJS('../build/fullcalendar/jquery/ui.resizable.js');
 }
 }
 else {
 else {
-	//includeJS('../src/jquery/jquery-1.4.1.min.js');
-	includeJS('../src/jquery/jquery-uncompressed.js');
+	//includeJS('jquery-1.4.1.min.js');
+	//includeJS('jquery-uncompressed.js');
+	includeJS('../src/jquery/jquery.js');
 	includeJS('../src/jquery/ui.core.js');
 	includeJS('../src/jquery/ui.core.js');
 	includeJS('../src/jquery/ui.draggable.js');
 	includeJS('../src/jquery/ui.draggable.js');
 	includeJS('../src/jquery/ui.resizable.js');
 	includeJS('../src/jquery/ui.resizable.js');

+ 3 - 2
tests/methods.html

@@ -174,11 +174,12 @@
 <button onclick="getView()">getView</button>
 <button onclick="getView()">getView</button>
 <button onclick="getDate()">getDate</button>
 <button onclick="getDate()">getDate</button>
 <button onclick="optionGetter()">option getter</button>
 <button onclick="optionGetter()">option getter</button>
-<button onclick="cal.width(1100)">change size</button>
+<button onclick="cal.width(1100)">change width (passive)</button>
 <button onclick="cal.fullCalendar('render')">render</button>
 <button onclick="cal.fullCalendar('render')">render</button>
+<button onclick="cal.fullCalendar('option', 'height', 1000)">change height</button>
 
 
 </p>
 </p>
 <div id='loading' style='position:absolute;display:none'>loading...</div>
 <div id='loading' style='position:absolute;display:none'>loading...</div>
-<div id='calendar' style='width:900px;margin:20px auto 0;font-family:arial'></div>
+<div id='calendar' style='width:70%;margin:20px auto 0;font-family:arial'></div>
 </body>
 </body>
 </html>
 </html>

+ 1 - 1
tests/options.html

@@ -129,6 +129,6 @@
 </script>
 </script>
 </head>
 </head>
 <body style='font-size:12px'>
 <body style='font-size:12px'>
-<div id='calendar' style='width:900px;margin:20px auto 0;font-family:arial'></div>
+<div id='calendar' style='width:70%;margin:20px auto 0;font-family:arial'></div>
 </body>
 </body>
 </html>
 </html>

+ 0 - 1
tests/plain.html

@@ -13,7 +13,6 @@
 		var y = date.getFullYear();
 		var y = date.getFullYear();
 		
 		
 		$('#calendar').fullCalendar({
 		$('#calendar').fullCalendar({
-			//defaultView: 'agendaWeek',
 			header: {
 			header: {
 				left: 'prev,next today',
 				left: 'prev,next today',
 				center: 'title',
 				center: 'title',

+ 1 - 1
version.txt

@@ -1 +1 @@
-1.4.4
+1.4.5