odds and ends for 1.4.8 release
This commit is contained in:
parent
b21736be4d
commit
8086b3d252
|
@ -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)
|
version 1.4.7 (7/5/10)
|
||||||
- "dropping" external objects onto the calendar
|
- "dropping" external objects onto the calendar
|
||||||
- droppable (boolean, to turn on/off)
|
- droppable (boolean, to turn on/off)
|
||||||
|
|
|
@ -74,6 +74,12 @@
|
||||||
padding: 2px 2px 0; /* distance between events and day edges */
|
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
|
/* Vertical Events
|
||||||
|
|
|
@ -151,6 +151,9 @@ function setOuterHeight(element, height, includeMargins) {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// TODO: curCSS has been deprecated
|
||||||
|
|
||||||
|
|
||||||
function hsides(_element, includeMargins) {
|
function hsides(_element, includeMargins) {
|
||||||
return (parseFloat($.curCSS(_element, 'paddingLeft', true)) || 0) +
|
return (parseFloat($.curCSS(_element, 'paddingLeft', true)) || 0) +
|
||||||
(parseFloat($.curCSS(_element, 'paddingRight', true)) || 0) +
|
(parseFloat($.curCSS(_element, 'paddingRight', true)) || 0) +
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<link rel='stylesheet' type='text/css' href='lib/fancybox/jquery.fancybox-1.2.6.css' />
|
<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' src='lib/fancybox/jquery.fancybox-1.2.6.pack.js'></script>
|
||||||
<script type='text/javascript'>
|
<script type='text/javascript'>
|
||||||
|
|
||||||
|
|
|
@ -75,7 +75,7 @@
|
||||||
//dayClick: function(date) {
|
//dayClick: function(date) {
|
||||||
// console.log(date);
|
// console.log(date);
|
||||||
//},
|
//},
|
||||||
isRTL: true,
|
//isRTL: true,
|
||||||
|
|
||||||
events: [
|
events: [
|
||||||
{
|
{
|
||||||
|
|
|
@ -41,6 +41,11 @@
|
||||||
start: y + '-06-06 11:30:00',
|
start: y + '-06-06 11:30:00',
|
||||||
allDay: false
|
allDay: false
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: 'O event',
|
||||||
|
start: y + '-06-06T10:20:00-02:00',
|
||||||
|
allDay: false
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: 999,
|
id: 999,
|
||||||
title: 'Repeating Event',
|
title: 'Repeating Event',
|
||||||
|
@ -102,6 +107,7 @@
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
cal = $('#calendar').fullCalendar({
|
cal = $('#calendar').fullCalendar({
|
||||||
|
ignoreTimezone: false,
|
||||||
//lazyFetching: false,
|
//lazyFetching: false,
|
||||||
editable: true,
|
editable: true,
|
||||||
header: {
|
header: {
|
||||||
|
|
Loading…
Reference in a new issue