From ff4a28b8b2bf908ac92a29bfdb8a96b878c3f2e7 Mon Sep 17 00:00:00 2001 From: Sanj Date: Tue, 15 May 2012 03:12:00 +0530 Subject: [PATCH] .each weirdness --- itf/templates/modules/festival/meeting.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/itf/templates/modules/festival/meeting.html b/itf/templates/modules/festival/meeting.html index d43f207..86d58dc 100755 --- a/itf/templates/modules/festival/meeting.html +++ b/itf/templates/modules/festival/meeting.html @@ -250,7 +250,9 @@ (function() { var $video; $('.padmaVideo').hide(); - $('.padmaVideo').pandoravideo(); + $('.padmaVideo').each(function() { + $(this).pandoravideo(); + }); $('a.padmaLink').toggle(function() { var index = $(this).index('.padmaLink'); var $video = $('.padmaVideo').eq(index);