From 432aa762215babd38406cf09286e19fe713802d7 Mon Sep 17 00:00:00 2001 From: lidlanca Date: Tue, 14 Oct 2014 20:38:59 -0400 Subject: [PATCH] var are you? --- plugins/lazyYT/assets/javascripts/lazyYT.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/plugins/lazyYT/assets/javascripts/lazyYT.js b/plugins/lazyYT/assets/javascripts/lazyYT.js index 566135495c7..3df9eb1f52a 100644 --- a/plugins/lazyYT/assets/javascripts/lazyYT.js +++ b/plugins/lazyYT/assets/javascripts/lazyYT.js @@ -33,7 +33,9 @@ }) .html('

') .addClass('lazyYT-image-loaded'); - $el_title = $el.find("p.lazyYT-title"); //get reference to the current container title element + + var $el_title = $el.find("p.lazyYT-title"); //get reference to the current container title element + $.getJSON('https://gdata.youtube.com/feeds/api/videos/' + id + '?v=2&alt=json', function (data) { $el_title.text(data.entry.title.$t); });