[Plot] Initially establish bounds

Initially establish domain bounds with time controller,
WTD-1515
This commit is contained in:
Victor Woeltjen
2015-09-04 15:31:47 -07:00
parent c58ffb4a52
commit b66759e519
3 changed files with 21 additions and 16 deletions

View File

@ -307,7 +307,8 @@ define(
// Suppress follow behavior if we have windowed in on the past
this.hasSpecificDomainBounds = true;
this.following = end >= this.domainExtrema[1];
this.following =
!this.domainExtrema || (end >= this.domainExtrema[1]);
};
/**