1
0
Fork 0

Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into devel

This commit is contained in:
Heiko Kernbach 2013-11-08 10:34:00 +01:00
commit b740dbe7ab
1 changed files with 8 additions and 1 deletions

View File

@ -63,7 +63,14 @@
+ encodeURIComponent(name)
+ "/_admin/aardvark/index.html";
if (hash) {
url += hash;
var base = hash.split("/")[0];
if (base.indexOf("#collection") === 0) {
base = "#collections";
}
if (base.indexOf("#application") === 0) {
base = "#applications";
}
url += base;
}
return url;
},