Change in css

master
santic-zombie 4 years ago
parent 85152fb7a8
commit 25fc853d2a
  1. 2
      index.html
  2. 6
      js/radio.js

@ -28,7 +28,7 @@
<br>
<a name="YouTubeURL" href="" target="_blank">
<img name="YouTubeThumb" width="210" height="170"
<img name="YouTubeThumb" width="336" height="188"
src="">
</img>
</a>

@ -72,12 +72,11 @@ function getSongURL(MPDartist, MPDsong)
function getYouTubeRequest(MPDfile) {
var url = 'https://www.googleapis.com/youtube/v3/search';
var params = {
// part: 'id',
part: 'id',
part: 'snippet',
key: '',
key: 'AIzaSyCfkMY2Nk3QwEh1Tjdqm-8GueBqOS5jgeI',
q: MPDfile
};
$.getJSON(url, params, showResults);
}
@ -87,4 +86,5 @@ function showResults(results) {
YouURL = entries[0].id.videoId;
document.querySelector('img[name="YouTubeThumb"]').setAttribute('src', thumb);
document.querySelector('a[name="YouTubeURL"]').setAttribute('href', "https://www.youtube.com/watch?v="+YouURL);
console.log("https://www.youtube.com/watch?v="+YouURL);
}

Loading…
Cancel
Save