Commit cb3ea07b authored by Antoine Cellerier's avatar Antoine Cellerier

* fix playlist bug and change some css

parent 3c6f137d
......@@ -175,7 +175,7 @@ function parse_playlist()
{
pos.appendChild( document.createElement( "div" ) );
pos.lastChild.setAttribute( 'class', 'pl_node' );
pos.lastChild.setAttribute( 'onclick', 'pl_play('+elt.getAttribute( 'id' )+');' );
/*pos.lastChild.setAttribute( 'onclick', 'pl_play('+elt.getAttribute( 'id' )+');' );*/
pos.lastChild.setAttribute( 'id', 'pl_'+elt.getAttribute( 'id' ) );
pos.lastChild.appendChild( document.createTextNode( elt.getAttribute( 'name' ) ) );
}
......
......@@ -111,8 +111,6 @@ div.pl_node {
}
a.pl_leaf {
font-style: normal;
color: #00f;
text-decoration: underline;
display: block;
}
a.pl_leaf:hover {
......@@ -128,6 +126,7 @@ div#browse {
position: absolute;
left: 15%;
z-index: 1;
font-size: 0.8em;
}
div#browse div.title {
background-color: #008;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment