mirror of https://gitee.com/bigwinds/arangodb
bugfix redirecting to collections
This commit is contained in:
parent
0dd7350305
commit
03f05007f7
|
@ -62,7 +62,7 @@ var documentSourceView = Backbone.View.extend({
|
|||
var name = window.location.hash.split("/");
|
||||
$('#transparentHeader').append(
|
||||
'<div class="breadcrumb">'+
|
||||
'<a href="#" class="activeBread">Collections</a>'+
|
||||
'<a href="#collections" class="activeBread">Collections</a>'+
|
||||
' > '+
|
||||
'<a class="activeBread" href="#collection/'+name[1]+'/documents/1">'+name[1]+'</a>'+
|
||||
' > '+
|
||||
|
|
|
@ -140,7 +140,7 @@ var documentView = Backbone.View.extend({
|
|||
var name = window.location.hash.split("/");
|
||||
$('#transparentHeader').append(
|
||||
'<div class="breadcrumb">'+
|
||||
'<a href="#" class="activeBread">Collections</a>'+
|
||||
'<a href="#collections" class="activeBread">Collections</a>'+
|
||||
' > '+
|
||||
'<a class="activeBread" href="#collection/' + name[1] + '/documents/1">' + name[1] + '</a>'+
|
||||
' > '+
|
||||
|
|
Loading…
Reference in New Issue