Skip to content

Commit

Permalink
final touches for 1.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
arshaw committed Apr 9, 2011
1 parent 7de24a0 commit 7fc1e16
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 4 deletions.
7 changes: 7 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@

version 1.5.1 (4/9/11)
- more flexible ISO8601 date parsing (issue 814)
- more flexible parsing of UNIX timestamps (issue 826)
- FullCalendar now buildable from source on a Mac (issue 795)
- FullCalendar QA'd in FF4 (issue 883)
- upgraded to jQuery 1.5.2 (which supports IE9) and jQuery UI 1.8.11

version 1.5 (3/19/11)
- slicker default styling for buttons
- reworked a lot of the calendar's HTML and accompanying CSS
Expand Down
2 changes: 1 addition & 1 deletion demos/gcal.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
$('#calendar').fullCalendar({

// US Holidays
events: $.fullCalendar.gcalFeed('http://www.google.com/calendar/feeds/usa__en%40holiday.calendar.google.com/public/basic'),
events: 'http://www.google.com/calendar/feeds/usa__en%40holiday.calendar.google.com/public/basic',

eventClick: function(event) {
// opens events in a popup window
Expand Down
4 changes: 2 additions & 2 deletions src/Header.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ function Header(calendar, options) {
};
}
if (buttonClick) {
var icon = options.theme ? smartProperty(options.buttonIcons, buttonName) : null;
var text = smartProperty(options.buttonText, buttonName);
var icon = options.theme ? smartProperty(options.buttonIcons, buttonName) : null; // why are we using smartProperty here?
var text = smartProperty(options.buttonText, buttonName); // why are we using smartProperty here?
var button = $(
"<span class='fc-button fc-button-" + buttonName + " " + tm + "-state-default'>" +
"<span class='fc-button-inner'>" +
Expand Down
4 changes: 4 additions & 0 deletions src/common/common.css
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,10 @@
border-color: #ddd;
}

.fc-state-disabled {
cursor: default;
}

.fc-state-disabled .fc-button-effect {
display: none;
}
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.5
1.5.1

0 comments on commit 7fc1e16

Please sign in to comment.