Skip to content

Commit

Permalink
app/build: make the favicon smaller
Browse files Browse the repository at this point in the history
The favicon is hotlinked from golang.org/favicon.ico, which is now
larger.

Resize it to 16x16.

Fixes golang/go#17022.

Change-Id: Id74eb3bd8c855a042d033664359f04089d7857ff
Reviewed-on: https://go-review.googlesource.com/28770
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
  • Loading branch information
broady committed Sep 8, 2016
1 parent 005df3e commit a485648
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/build/ui.html
Expand Up @@ -112,7 +112,7 @@ <h1>Go Dashboard</h1>
<td class="result{{if (unsupported .)}} unsupported{{end}}">
{{with $c.Result . $h}}
{{if .BuildingURL}}
<a href="{{.BuildingURL}}"><img src="https://golang.org/favicon.ico" border=0></a>
<a href="{{.BuildingURL}}"><img src="https://golang.org/favicon.ico" height=16 width=16 border=0></a>
{{else if .OK}}
<span class="ok">ok</span>
{{else}}
Expand Down Expand Up @@ -198,7 +198,7 @@ <h2>
<td class="result{{if (unsupported .)}} unsupported{{end}}">
{{with $pkg.Commit.Result . $goHash}}
{{if .BuildingURL}}
<a href="{{.BuildingURL}}"><img src="https://golang.org/favicon.ico" border=0></a>
<a href="{{.BuildingURL}}"><img src="https://golang.org/favicon.ico" height=16 width=16 border=0></a>
{{else if .OK}}
<span class="ok">ok</span>
{{else}}
Expand Down

0 comments on commit a485648

Please sign in to comment.