Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
recent track fix
  • Loading branch information
yuj12001 committed Oct 11, 2015
1 parent a7c8547 commit 2cde1d7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion VQI_GenomeBrowser.js
Expand Up @@ -73,7 +73,6 @@ function VQI_GenomeBrowser(id, serviceURL) {
for (i in trackInfo){

if (trackInfo[i].name == track){
console.log([trackInfo[i].name,trackInfo[i].type , trackInfo[i].args]);
self.addTrack(trackInfo[i].name , trackInfo[i].type , trackInfo[i].args);
break;
}
Expand Down Expand Up @@ -751,6 +750,8 @@ function VQI_GenomeBrowser(id, serviceURL) {
for(var key in genomes[genome])
{
this.addTrack(genome+"_"+key, key, genomes[genome][key])
trackInfo.push({name: genome+"_"+key, type: key, args: genomes[genome][key]});
updateRecentTrackDropDown();
}
}
}
Expand Down

0 comments on commit 2cde1d7

Please sign in to comment.