From: Robin Appelman Date: Thu, 1 Aug 2013 14:46:01 +0000 (+0200) Subject: make sure the first breadcrumb item is inserted before any other elements in the... X-Git-Tag: v6.0.0alpha2~368^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=44594fb41cb8883d77e0c375a734b3f4a2ce54d9;p=nextcloud-server.git make sure the first breadcrumb item is inserted before any other elements in the topbar --- diff --git a/core/js/js.js b/core/js/js.js index cf4e72324dc..a92d41f236f 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -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;