projects
/
brevno-suite
/
hugo
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0167fb4
)
Set Content-Type for livereload.js
author
bep
<bjorn.erik.pedersen@gmail.com>
Wed, 15 Oct 2014 11:26:21 +0000
(13:26 +0200)
committer
spf13
<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
patch
|
blob
|
history
diff --git
a/livereload/livereload.go
b/livereload/livereload.go
index 29a6168a5d33769bebe370fef70033a649b9968c..1b1546158afb8a43d11416a5b9d9a9fbd3fc4cf9 100644
(file)
--- a/
livereload/livereload.go
+++ b/
livereload/livereload.go
@@
-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)
}