diff options
author | Henare Degan <henare.degan@gmail.com> | 2015-04-15 11:24:48 +1000 |
---|---|---|
committer | Henare Degan <henare.degan@gmail.com> | 2015-04-15 11:24:48 +1000 |
commit | 0138c9bdf79b469742de83e7cf6a0443c0a275be (patch) | |
tree | a7132a52c491eb9157e3f3f05957583dd04b9242 | |
parent | c9fc95d30f527c36d7d6baa2666a8bdab7d72b6e (diff) |
Use HTTPS for categorisation chart to avoid mixed content warnings
-rw-r--r-- | app/views/request_game/play.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/request_game/play.html.erb b/app/views/request_game/play.html.erb index 544274e93..ff536bb7e 100644 --- a/app/views/request_game/play.html.erb +++ b/app/views/request_game/play.html.erb @@ -2,7 +2,7 @@ <div id="game_sidebar"> <p style="text-align: center"> - <img width=250 height=125 src="http://chart.apis.google.com/chart?chs=250x125&cht=gom&chd=t:<%=@percentage%>" alt="<%=@percentage%>% of requests have been categorised"> + <img width=250 height=125 src="https://chart.googleapis.com/chart?chs=250x125&cht=gom&chd=t:<%=@percentage%>" alt="<%=@percentage%>% of requests have been categorised"> <br><%=pluralize(@missing, 'request')%> left to categorise / <%=@total %> total </p> <h2>Top recent players</h2> |