Skip to content

Commit

Permalink
Reduces timeout and makes nodes more visible.
Browse files Browse the repository at this point in the history
  • Loading branch information
Katee committed Oct 23, 2012
1 parent a7b20a1 commit d425339
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion js/historygraph.js
Expand Up @@ -26,6 +26,7 @@ function init() {
var tab = history_pages[i];
sigInst.addNode(tab.id.toString(), {
'label': tab.url,
'color': '#eee',
'x': Math.random(),
'y': Math.random()
});
Expand Down Expand Up @@ -54,7 +55,7 @@ function init() {

// stop altas afer 4 seconds, makes it more friendly for background tabs
setTimeout(function(){toggleAtlas();}, 4000);
}, 500);
}, 100);
// get rid of this timeout
});
}
Expand Down

0 comments on commit d425339

Please sign in to comment.