Skip to content

Commit

Permalink
Fix subsequent selections
Browse files Browse the repository at this point in the history
  • Loading branch information
danvk committed Jun 12, 2015
1 parent be7989c commit 56bd03b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion cycledash/static/js/examine/components/PileupViewer.js
Expand Up @@ -144,7 +144,11 @@ var PileupViewer = React.createClass({
},
update: function() {
if (this.props.isOpen && this.props.selectedRecord) {
this.lazilyCreateDalliance();
if (!this.browser) {
this.lazilyCreateDalliance();
} else {
this.panToSelection();
}
}
},
rangeForRecord: function(record) {
Expand Down

0 comments on commit 56bd03b

Please sign in to comment.