Change Hitbox player to HTTPS (#627)

This commit is contained in:
Calvin Montgomery 2016-09-19 20:45:21 -07:00
parent 489c0933e8
commit b4b23f748f
3 changed files with 4 additions and 17 deletions

View file

@ -1,10 +1,3 @@
HITBOX_ERROR = 'Hitbox.tv only serves its content over plain HTTP, but you are
viewing this page over secure HTTPS. Your browser therefore blocks the
hitbox embed due to mixed content policy. In order to view hitbox, you must
view this page over plain HTTP (change "https://" to "http://" in the address
bar)-- your websocket will still be connected using secure HTTPS. This is
something I have asked Hitbox to fix but they have not done so yet.'
window.HitboxPlayer = class HitboxPlayer extends EmbedPlayer
constructor: (data) ->
if not (this instanceof HitboxPlayer)
@ -14,8 +7,6 @@ window.HitboxPlayer = class HitboxPlayer extends EmbedPlayer
load: (data) ->
data.meta.embed =
src: "http://hitbox.tv/embed/#{data.id}"
src: "https://www.hitbox.tv/embed/#{data.id}"
tag: 'iframe'
super(data)
mixedContentError: HITBOX_ERROR