Merge pull request #28 from aptx4869/master
Escape ampersands in the generated URL
This commit is contained in:
commit
c1415c32cb
|
@ -79,9 +79,9 @@ module Rack
|
||||||
src = livereload_local_uri.dup.gsub('localhost', host_to_use) + '?'
|
src = livereload_local_uri.dup.gsub('localhost', host_to_use) + '?'
|
||||||
end
|
end
|
||||||
|
|
||||||
src << "&mindelay=#{@options[:min_delay]}" if @options[:min_delay]
|
src << "&mindelay=#{@options[:min_delay]}" if @options[:min_delay]
|
||||||
src << "&maxdelay=#{@options[:max_delay]}" if @options[:max_delay]
|
src << "&maxdelay=#{@options[:max_delay]}" if @options[:max_delay]
|
||||||
src << "&port=#{@options[:port]}" if @options[:port]
|
src << "&port=#{@options[:port]}" if @options[:port]
|
||||||
|
|
||||||
template = ERB.new(::File.read(::File.expand_path('../../../skel/livereload.html.erb', __FILE__)))
|
template = ERB.new(::File.read(::File.expand_path('../../../skel/livereload.html.erb', __FILE__)))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue