fix the syntax.
git-svn-id: svn://10.0.0.236/trunk@171248 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
parent
6922ab328d
commit
50b301f08c
@ -196,7 +196,8 @@ function getPreviewForEvent( event, instStartDate, instEndDate )
|
||||
boxAppendLabeledText(vbox, "tooltipTitle", event.title);
|
||||
}
|
||||
|
||||
if (var location = event.getProperty("LOCATION"))
|
||||
var location = event.getProperty("LOCATION");
|
||||
if (location)
|
||||
{
|
||||
boxAppendLabeledText(vbox, "tooltipLocation", location);
|
||||
}
|
||||
@ -246,7 +247,8 @@ function getPreviewForEvent( event, instStartDate, instEndDate )
|
||||
boxAppendLabeledText(vbox, "tooltipStatus", statusString);
|
||||
}
|
||||
|
||||
if (var description = event.getProperty("DESCRIPTION"))
|
||||
var description = event.getProperty("DESCRIPTION");
|
||||
if (description)
|
||||
{
|
||||
// display up to 4 description lines, like body of message below headers
|
||||
boxAppendText(vbox, "");
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user