I've been digging a bit in this and I found the following in /var/www/js.playerlib.js:
I get now the whole line clickable as action item (except for the track number), but the layout is completely off. as it seems the css runs deeply through this all...
Hendrik-Jan
Code:
output += '<li id="lib-song-' + (i + 1) + '" class="clearfix"><div class="lib-entry-song"><s$
+ '<a class="btn" href="#notarget" title="Actions" data-toggle="context" data-target="#conte$
+ '</span><span class="songname">' + allSongs[i].title+'</span>'
+ '<span class="songtime"> ' + allSongs[i].time_mmss + '</span>'
+ '<span class="songartist"> ' + allSongs[i].actual_artist + '</span>'
+ '<span class="songyear"> ' + songyear + '</span></div>'
+ '</a>'
+ '</li>';
/* Original:
output += '<li id="lib-song-' + (i + 1) + '" class="clearfix"><div class="lib-entry-song"><s$
+ '</span><span class="songname">' + allSongs[i].title+'</span>'
+ '<span class="songtime"> ' + allSongs[i].time_mmss + '</span>'
+ '<span class="songartist"> ' + allSongs[i].actual_artist + '</span>'
+ '<span class="songyear"> ' + songyear + '</span></div>'
+ '<div class="lib-action"><a class="btn" href="#notarget" title="Actions" data-toggle="cont$
+ '</li>';
*/
I get now the whole line clickable as action item (except for the track number), but the layout is completely off. as it seems the css runs deeply through this all...
Hendrik-Jan