aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2013-08-01 16:46:01 +0200
committerRobin Appelman <icewind@owncloud.com>2013-08-01 16:46:01 +0200
commit44594fb41cb8883d77e0c375a734b3f4a2ce54d9 (patch)
treeea6f867629e5098ca0f0f059d8818cef3a04c28d
parent930f0e4c1824405f2be8144187613271fe169c73 (diff)
downloadnextcloud-server-44594fb41cb8883d77e0c375a734b3f4a2ce54d9.tar.gz
nextcloud-server-44594fb41cb8883d77e0c375a734b3f4a2ce54d9.zip
make sure the first breadcrumb item is inserted before any other elements in the topbar
-rw-r--r--core/js/js.js2
1 files changed, 1 insertions, 1 deletions
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;