mirror of
https://github.com/alehaa/nginx-fancyindex-flat-theme.git
synced 2025-04-26 00:49:53 +03:00
Fix display error in breadcrumbs
This commit is contained in:
parent
95119011db
commit
d612dca71e
1 changed files with 2 additions and 2 deletions
|
@ -59,8 +59,8 @@ function breadcrumbs()
|
|||
for (var i = 0; i < crumbs.length; i++)
|
||||
{
|
||||
path += crumbs[i] + '/';
|
||||
nav +=
|
||||
crumb((i == 0) ? 'Home' : crumbs[i], path, (i == crumbs.length - 1));
|
||||
nav += crumb((i == 0) ? 'Home' : decodeURIComponent(crumbs[i]), path,
|
||||
(i == crumbs.length - 1));
|
||||
}
|
||||
|
||||
/* Update the breadcrumbs element's contents with the breadcrumbs navigation
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue