mirror of https://gitee.com/bigwinds/arangodb
removed wrong capitalize option
This commit is contained in:
parent
5aa808b5be
commit
2d4ea8de3b
|
@ -330,8 +330,9 @@
|
|||
|
||||
breadcrumb: function () {
|
||||
var name = window.location.hash.split("/");
|
||||
console.log(name);
|
||||
$('#subNavigationBar .breadcrumb').html(
|
||||
'<a href="#collection/' + name[1] + '/documents/1">Collection: ' + name[1].toLowerCase() + '</a>' +
|
||||
'<a href="#collection/' + name[1] + '/documents/1">Collection: ' + name[1] + '</a>' +
|
||||
'<i class="fa fa-chevron-right"></i>' +
|
||||
'Document: ' + name[2]
|
||||
);
|
||||
|
|
|
@ -236,7 +236,6 @@ div.headerBar {
|
|||
a {
|
||||
color: $c-white !important;
|
||||
opacity: .8;
|
||||
text-transform: capitalize;
|
||||
-moz-transition: all .2s ease-in;
|
||||
-o-transition: all .2s ease-in;
|
||||
-webkit-transition: all .2s ease-in;
|
||||
|
|
Loading…
Reference in New Issue