mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
Merge pull request #6444 from kevinansfield/fix-mixed-content-warnings
Fix mixed content security warnings due to gravatar images
This commit is contained in:
commit
6f18fcabfa
2 changed files with 3 additions and 3 deletions
|
@ -64,7 +64,7 @@ export default Component.extend({
|
|||
|
||||
let style = '';
|
||||
if (email) {
|
||||
let url = `http://www.gravatar.com/avatar/${window.md5(email)}?s=${size}&d=blank`;
|
||||
let url = `//www.gravatar.com/avatar/${window.md5(email)}?s=${size}&d=blank`;
|
||||
style = `background-image: url(${url})`;
|
||||
}
|
||||
return Ember.String.htmlSafe(style);
|
||||
|
|
|
@ -56,7 +56,7 @@ describeComponent(
|
|||
|
||||
it('immediately renders the gravatar if valid email supplied', function () {
|
||||
let email = 'test@example.com';
|
||||
let expectedUrl = `http://www.gravatar.com/avatar/${md5(email)}?s=100&d=blank`;
|
||||
let expectedUrl = `//www.gravatar.com/avatar/${md5(email)}?s=100&d=blank`;
|
||||
|
||||
this.set('email', email);
|
||||
|
||||
|
@ -70,7 +70,7 @@ describeComponent(
|
|||
|
||||
it('throttles gravatar loading as email is changed', function (done) {
|
||||
let email = 'test@example.com';
|
||||
let expectedUrl = `http://www.gravatar.com/avatar/${md5(email)}?s=100&d=blank`;
|
||||
let expectedUrl = `//www.gravatar.com/avatar/${md5(email)}?s=100&d=blank`;
|
||||
|
||||
this.set('email', 'test');
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue