diff options
author | randomdan <randomdan@localhost> | 2010-09-13 19:57:12 +0000 |
---|---|---|
committer | randomdan <randomdan@localhost> | 2010-09-13 19:57:12 +0000 |
commit | a7af99a8000fcb34886eb556d5de2807018f0d53 (patch) | |
tree | f8db3df982523573ff9a96be576f2e2a9a7d5f51 | |
parent | Show mask status (diff) | |
download | gentoobrowse-a7af99a8000fcb34886eb556d5de2807018f0d53.tar.bz2 gentoobrowse-a7af99a8000fcb34886eb556d5de2807018f0d53.tar.xz gentoobrowse-a7af99a8000fcb34886eb556d5de2807018f0d53.zip |
Fix Chromium irritation with whitespace in tooltips
-rw-r--r-- | gentoobrowse/home.xslt | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gentoobrowse/home.xslt b/gentoobrowse/home.xslt index 0363a81..9a32178 100644 --- a/gentoobrowse/home.xslt +++ b/gentoobrowse/home.xslt @@ -32,9 +32,7 @@ <xsl:if test="tracked = 1"> <xsl:attribute name="class">tracked</xsl:attribute> </xsl:if> - <xsl:attribute name="title"> - <xsl:value-of select="description" /> (updated <xsl:value-of select="moddate" />) - </xsl:attribute> + <xsl:attribute name="title"><xsl:value-of select="description" /> (updated <xsl:value-of select="moddate" />)</xsl:attribute> <xsl:attribute name="href"> /package/<xsl:value-of select="catname" />/<xsl:value-of select="pkgname" /> </xsl:attribute> |