Set Content-Type for livereload.js
authorbep <bjorn.erik.pedersen@gmail.com>
Wed, 15 Oct 2014 11:26:21 +0000 (13:26 +0200)
committerspf13 <steve.francia@gmail.com>
Wed, 15 Oct 2014 16:45:29 +0000 (12:45 -0400)
The Content-Type was not set for livereload.js and was interpreteted by the browser as text/plain.

This commit sets it to application/javascript.

Fixes #562

livereload/livereload.go

index 29a6168a5d33769bebe370fef70033a649b9968c..1b1546158afb8a43d11416a5b9d9a9fbd3fc4cf9 100644 (file)
@@ -48,6 +48,7 @@ func RefreshPath(s string) {
 }
 
 func ServeJS(w http.ResponseWriter, r *http.Request) {
+       w.Header().Set("Content-Type", "application/javascript")
        w.Write(livereloadJS)
 }