Merge pull request #710 from kitematic/https-images

Load recommended images over https
This commit is contained in:
Michael Chiang 2015-06-23 10:41:12 -07:00
commit 1dd362b211
1 changed files with 2 additions and 2 deletions

View File

@ -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) {