From 0e13801a7a91736427f972f12e5a1b0064d4c8de Mon Sep 17 00:00:00 2001 From: Paul Hooijenga Date: Mon, 5 Mar 2018 09:39:18 +0100 Subject: [PATCH] Load Github buttons over HTTPS --- front/src/js/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/src/js/app.js b/front/src/js/app.js index 7fee1f2..6eba496 100644 --- a/front/src/js/app.js +++ b/front/src/js/app.js @@ -42,7 +42,7 @@ yltApp.run(['$rootScope', '$location', function($rootScope, $location) { // GitHub star button (asynchronously loaded iframe) window.addEventListener('load', function() { - window.document.getElementById('ghbtn').src = 'http://ghbtns.com/github-btn.html?user=gmetais&repo=YellowLabTools&type=star&count=true&size=large'; + window.document.getElementById('ghbtn').src = 'https://ghbtns.com/github-btn.html?user=gmetais&repo=YellowLabTools&type=star&count=true&size=large'; }); }]);