Merge pull request #102 from skeltoac/auth-token-content-type

Set content-type on auth_token.js
This commit is contained in:
Iwasaki Yudai 2016-08-13 17:48:42 -07:00 committed by GitHub
commit ddbaa983c0

View File

@ -379,6 +379,7 @@ func (app *App) handleCustomIndex(w http.ResponseWriter, r *http.Request) {
}
func (app *App) handleAuthToken(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "application/javascript")
w.Write([]byte("var gotty_auth_token = '" + app.options.Credential + "';"))
}