youtube.js: prevent default action of opening new window

This commit is contained in:
czaks 2013-07-20 17:50:52 -04:00 committed by Michael Foster
parent 163df14b50
commit 51bd267764

View File

@ -29,6 +29,8 @@ onready(function(){
var videoID = $(this).data('video');
$(this).html('<iframe style="float:left;margin: 10px 20px" type="text/html" width="360" height="270" src="http://www.youtube.com/embed/' + videoID + '?autoplay=1" frameborder="0"/>');
return false;
});
});