Skip to content

Instantly share code, notes, and snippets.

View Aestyo's full-sized avatar
🏠
Working from home

Æstyo Aestyo

🏠
Working from home
  • France
View GitHub Profile
@pinceladasdaweb
pinceladasdaweb / gist:6662290
Created September 22, 2013 18:04
Get Youtube Video Thumbnail with JavaScript.
var Youtube = (function () {
'use strict';
var video, results;
var getThumb = function (url, size) {
if (url === null) {
return '';
}
size = (size === null) ? 'big' : size;