From 39f5bbdc8bc00929ce85bb0297ee78c2a7790b30 Mon Sep 17 00:00:00 2001 From: Psychedelic Squid Date: Mon, 12 Mar 2012 21:57:55 +0000 Subject: [PATCH] Smaller videos don't needlessly overlap each other. --- public/ytembed.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/ytembed.js b/public/ytembed.js index b3b4ff3..28e23bf 100644 --- a/public/ytembed.js +++ b/public/ytembed.js @@ -13,8 +13,8 @@ function onYouTubePlayerAPIReady() { if(videoIDMaybe) { var ytVideoID = videoIDMaybe[1]; var player = new YT.Player(youTubePlaceholders[i], { - height: '290', - width: '480', + height: '203', + width: '336', videoId: ytVideoID }); }