Closed GoogleCodeExporter closed 9 years ago
I fixed this by adding in the js file :
var todayLink;
if(defaults.navLinks.enableToday) {
//Create Today link for later
todayLink = jQuery('<div class="TodayLink"><a href="" class="link-today">'+ defaults.navLinks.t
+'</a></div>').click(function() {
jQuery.J.ChangeMonth(new Date().clearTime());
return false;
});
}
instead of :
var todayLink;
if(defaults.navLinks.enableToday) {
//Create Today link for later
todayLink = jQuery('<div class="TodayLink"><a href="" class="link-today">'+ defaults.navLinks.t
+'</a></div>').click(function() {
jQuery.J.ChangeMonth(new Date());
return false;
});
}
Original comment by yefrederic
on 24 Jul 2009 at 3:24
This issue was closed by revision r70.
Original comment by k.leneau@gmail.com
on 8 Apr 2010 at 7:12
Original issue reported on code.google.com by
yefrederic
on 24 Jul 2009 at 1:19