Closed (fixed)
Project:
Kaltura
Version:
6.x-1.4
Component:
Miscellaneous
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
8 Apr 2009 at 02:13 UTC
Updated:
18 Aug 2010 at 07:00 UTC
Just made my first playlist. Looks great.. I could see making regular use of this.. except that the videos for the list on the right don't appear in IE7.
Works great in Opera, FF, Safari.
http://itvt.com/itvtd6/kalturaplaylist/tvot-2009-adressable-advertising
Anyone have any ideas?
Comments
Comment #1
anthonyjhall commentedSomeone at Kaltura Supplied me with info on this directly:
1. Try to add the following CSS definition in your theme's CSS file:
div.kaltura_playlist div.play-list div.clips { height:340px; }
2. If the above doesn't help, try the following:
· Open file (within kaltura module):
plugins/kaltura_playlist/kaltura_playlist.module
· Find line:
$("div.clips").height($("div.clips").height()+2);
· Change to
if ($("div.clips").height()) $("div.clips").height($("div.clips").height()+2);
else $("div.clips").height(340);
Comment #2
oferc commented