mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-06-22 06:01:25 +02:00
Handle possibly undefined value
This commit is contained in:
parent
fc4837b51c
commit
fada958e72
1 changed files with 1 additions and 1 deletions
|
@ -107,7 +107,7 @@ exports.handlers = {
|
||||||
// Append an Available In: table at the end of the namespace description.
|
// Append an Available In: table at the end of the namespace description.
|
||||||
if (rows.length > 0) {
|
if (rows.length > 0) {
|
||||||
var table = "<br><br><table><tr><th>Available in:</th><td>" + rows.join("</td><td>") + "</td></tr></table>";
|
var table = "<br><br><table><tr><th>Available in:</th><td>" + rows.join("</td><td>") + "</td></tr></table>";
|
||||||
e.doclet.description = e.doclet.description + table;
|
e.doclet.description = (e.doclet.description ? e.doclet.description : "") + table;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue