Remove whitespace from around object name

Prevents unnecessary space between ancestors and object name.
This commit is contained in:
Tim 2015-05-25 17:48:24 +10:00
parent 9856173fc7
commit b59875087a

View File

@ -22,10 +22,10 @@
<header> <header>
<?js if (!doc.longname || doc.kind !== 'module') { ?> <?js if (!doc.longname || doc.kind !== 'module') { ?>
<h2><?js if (doc.ancestors && doc.ancestors.length) { ?> <h2><?js if (doc.ancestors && doc.ancestors.length) { ?>
<span class="ancestors"><?js= doc.ancestors.join('') ?></span> <span class="ancestors"><?js= doc.ancestors.join('') ?></span><?js
<?js } ?> }
<?js= doc.name ?> ?><?js= doc.name ?><?js
<?js if (doc.variation) { ?> if (doc.variation) { ?>
<sup class="variation"><?js= doc.variation ?></sup> <sup class="variation"><?js= doc.variation ?></sup>
<?js } ?></h2> <?js } ?></h2>
<?js if (doc.classdesc) { ?> <?js if (doc.classdesc) { ?>