fixed tooltips for IE
This commit is contained in:
parent
6d42a44f26
commit
bec299d698
1 changed files with 4 additions and 4 deletions
|
|
@ -939,7 +939,7 @@ sub view
|
||||||
$var->{"paramType"} = $params->{type};
|
$var->{"paramType"} = $params->{type};
|
||||||
|
|
||||||
|
|
||||||
|
$var->{"extrasUrl"} = $self->session->url->extras();
|
||||||
##### Process the template
|
##### Process the template
|
||||||
# If user is only a Visitor and we've gotten this far, update the cache
|
# If user is only a Visitor and we've gotten this far, update the cache
|
||||||
|
|
||||||
|
|
@ -1136,11 +1136,12 @@ sub viewMonth
|
||||||
my $week = int(($adjust + $mday) / 7);
|
my $week = int(($adjust + $mday) / 7);
|
||||||
my $position = ($adjust + $mday) % 7;
|
my $position = ($adjust + $mday) % 7;
|
||||||
|
|
||||||
push @{$var->{weeks}->[$week]->{days}->[$position]->{events}}, {
|
my $eventRef = {
|
||||||
## Event data
|
## Event data
|
||||||
(%eventVar),
|
(%eventVar),
|
||||||
(%eventDates),
|
(%eventDates)
|
||||||
};
|
};
|
||||||
|
push @{$var->{weeks}->[$week]->{days}->[$position]->{events}}, $eventRef;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1184,7 +1185,6 @@ sub viewMonth
|
||||||
$var->{"monthAbbr"} = $dt->month_abbr;
|
$var->{"monthAbbr"} = $dt->month_abbr;
|
||||||
$var->{"year"} = $dt->year;
|
$var->{"year"} = $dt->year;
|
||||||
|
|
||||||
|
|
||||||
# Return the template
|
# Return the template
|
||||||
return $var;
|
return $var;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue