Skip to content

Commit

Permalink
Update function.js
Browse files Browse the repository at this point in the history
  • Loading branch information
rern committed Oct 12, 2024
1 parent dd2a032 commit 8ef76b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions srv/http/assets/js/function.js
Original file line number Diff line number Diff line change
Expand Up @@ -1213,12 +1213,12 @@ function renderLibraryList( data ) { // V.librarylist
var dir0 = dir[ 0 ];
var htmlpath = ico( V.mode );
if ( V.mode.slice( -5 ) === 'radio' ) htmlpath += '<a>'+ V.mode +' / </a>';
htmlpath += '<a>'+ dir0 +' <wh>/</wh> <span class="lidir">'+ dir0 +'</span></a>';
htmlpath += '<a>'+ dir0 +' / <span class="lidir">'+ dir0 +'</span></a>';
var lidir = dir0;
var iL = dir.length;
for ( i = 1; i < iL; i++ ) {
lidir += '/'+ dir[ i ];
htmlpath += '<a>'+ dir[ i ] +' <wh>/</wh> <span class="lidir">'+ lidir +'</span></a>';
htmlpath += '<a>'+ dir[ i ] +' / <span class="lidir">'+ lidir +'</span></a>';
}
}
if ( V.mode === 'webradio' ) {
Expand Down

0 comments on commit 8ef76b6

Please sign in to comment.