dshafik / securepasswords.info

A polyglot repo of examples for using secure passwords (typically bcrypt)
https://securepasswords.info
Apache License 2.0
38 stars 13 forks source link

Update link to Google font so it loads over HTTPS to avoid mixed content errors #26

Closed rpkamp closed 8 years ago

rpkamp commented 8 years ago

Currently Google Chrome (and possibly other browsers too) gives an error about a font that wants loading over HTTP while the website is loaded over HTTPS, causing the font not to be loaded at all (mixed content error).

By loading the font over HTTP always we avoid this problem. We could have loaded the font using the schema-less protocol (//), but that's known to cause problems, so always loading over HTTPS is our best option here.

dshafik commented 8 years ago

@rpkamp thanks for this!

dshafik commented 8 years ago

@rpkamp it's live now, thanks again