-
Bug
-
Resolution: Fixed
-
Minor
-
1.5.0
-
None
The enveloping tag of the title and the description of each video has a class named "info".
function playVideo_<xsl:value-of select="$uniqueId"/> (a, clips, videoUrl, divInfo, videoDesc) 70 { 71 // launch video 72 $f("player-<xsl:value-of select="$uniqueId"/>").play(baseUrl<xsl:value-of select="$uniqueId"/> + videoUrl); 73 74 // Display description 75 $j('#' + divInfo).html(videoDesc); 76 77 var links = $j('#' + clips).get(0).getElementsByTagName("a"); 78 for (var i = 0; i < links.length; i++) 79 { 80 links[i].className = ''; 81 } 82 83 a.className = "play"; 84 }
This is the same class used to alert users on an action like the class named error in forms and the class named success in authentification page. That's not an information specific to the use of the application but a content wich should be presented like an other content of the skin.