Skip to content

Commit

Permalink
dashboard: tidy up 'top' link.
Browse files Browse the repository at this point in the history
The previous link worked, but was unnecessary and had a trailing "}".

R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/5674068
  • Loading branch information
dsymonds committed Feb 16, 2012
1 parent edf1c03 commit e8edf84
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions misc/dashboard/app/build/ui.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
}
.build .hash {
font-family: monospace;
font-size: 9pt;
font-size: 9pt;
}
.build .result {
text-align: center;
Expand Down Expand Up @@ -128,7 +128,7 @@ <h1>Go Build Status</h1>
<div class="paginate">
<a {{if .HasPrev}}href="?page={{.Prev}}"{{else}}class="inactive"{{end}}>prev</a>
<a {{if .Next}}href="?page={{.Next}}"{{else}}class="inactive"{{end}}>next</a>
<a {{if .HasPrev}}href="?page=0}"{{else}}class="inactive"{{end}}>top</a>
<a {{if .HasPrev}}href="."{{else}}class="inactive"{{end}}>top</a>
</div>
{{end}}

Expand Down

0 comments on commit e8edf84

Please sign in to comment.