]> source.dussan.org Git - nextcloud-server.git/commitdiff
make sure the first breadcrumb item is inserted before any other elements in the...
authorRobin Appelman <icewind@owncloud.com>
Thu, 1 Aug 2013 14:46:01 +0000 (16:46 +0200)
committerRobin Appelman <icewind@owncloud.com>
Thu, 1 Aug 2013 14:46:01 +0000 (16:46 +0200)
core/js/js.js

index cf4e72324dc33427246365d183bae9a553f1c417..a92d41f236fdf5dc35bccaa79fb38c716cfa5ca3 100644 (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;