mirror of https://github.com/docker/docs.git
Merge pull request #710 from kitematic/https-images
Load recommended images over https
This commit is contained in:
commit
1dd362b211
|
|
@ -112,9 +112,9 @@ var ImageCard = React.createClass({
|
|||
};
|
||||
var imgsrc;
|
||||
if (this.props.image.img) {
|
||||
imgsrc = `http://kitematic.com/recommended/${this.props.image.img}`;
|
||||
imgsrc = `https://kitematic.com/recommended/${this.props.image.img}`;
|
||||
} else {
|
||||
imgsrc = 'http://kitematic.com/recommended/kitematic_html.png';
|
||||
imgsrc = 'https://kitematic.com/recommended/kitematic_html.png';
|
||||
}
|
||||
var tags;
|
||||
if (self.state.loading) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue