improve tiles demo and remove an empty file

This commit is contained in:
Lucas Clemente 2016-07-08 18:06:57 +02:00
parent 37f2066933
commit 4750924b27
2 changed files with 1 additions and 2 deletions

View file

@ -44,7 +44,7 @@ func init() {
})
http.HandleFunc("/demo/tiles", func(w http.ResponseWriter, r *http.Request) {
io.WriteString(w, "<html><body>")
io.WriteString(w, "<html><head><style>img{width:40px;height:40px;}</style></head><body>")
for i := 0; i < 200; i++ {
fmt.Fprintf(w, `<img src="/demo/tile?cachebust=%d">`, i)
}