From 49d36bd0679bcfbb2843c80cf4f479bdc80897cc Mon Sep 17 00:00:00 2001 From: Nitin Gupta Date: Tue, 3 Apr 2018 17:48:59 +0530 Subject: [PATCH] Changes the http to https --- app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app.js b/app.js index 11fd61a..7231eb5 100644 --- a/app.js +++ b/app.js @@ -4,7 +4,7 @@ var app = angular.module('JukeTubeApp', []); app.run(function () { var tag = document.createElement('script'); - tag.src = "http://www.youtube.com/iframe_api"; + tag.src = "https://www.youtube.com/iframe_api"; var firstScriptTag = document.getElementsByTagName('script')[0]; firstScriptTag.parentNode.insertBefore(tag, firstScriptTag); }); @@ -222,4 +222,4 @@ app.controller('VideosController', function ($scope, $http, $log, VideosService) $scope.tabulate = function (state) { $scope.playlist = state; } -}); \ No newline at end of file +});