Skip to content
Snippets Groups Projects
Commit 915fbdcb authored by Bertrand  NÉRON's avatar Bertrand NÉRON
Browse files

BUGFIX

remove hard coded dbname (issue #863)
parent e343034f
No related branches found
No related tags found
No related merge requests found
......@@ -13,7 +13,8 @@
<script type="text/javascript">
function getdoc( docID ){
$.couch.db("secreton-dev").openDoc( docID, {
var dbname = document.location.href.split('/')[3];
$.couch.db(dbname).openDoc( docID, {
success:function( doc ) {
var min = doc.genes[0].begin ;
var max = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment