Merge pull request #4278 from owncloud/breadcrumb-first

make sure the first breadcrumb item is inserted before any other elements in the topbar
This commit is contained in:
Jörn Friedrich Dreyer 2013-08-02 02:46:12 -07:00
commit 41739ff83f
1 changed files with 1 additions and 1 deletions

View File

@ -387,7 +387,7 @@ OC.Breadcrumb={
existing.removeClass('last');
existing.last().after(crumb);
}else{
OC.Breadcrumb.container.append(crumb);
OC.Breadcrumb.container.prepend(crumb);
}
OC.Breadcrumb.crumbs.push(crumb);
return crumb;