[Time Conductor] Removed caching of UTC Time System defaults which was causing gaps in plots. Fixes #1434

This commit is contained in:
Henry
2017-03-31 15:39:13 -07:00
parent 4d6a0d4931
commit c27b37918a
2 changed files with 11 additions and 27 deletions

View File

@ -68,14 +68,6 @@ define([
return ts.metadata.key === options.defaultTimeSystem;
});
if (timeSystem !== undefined) {
defaults = timeSystem.defaults();
if (options.defaultTimespan !== undefined) {
defaults.deltas.start = options.defaultTimespan;
defaults.bounds.start = defaults.bounds.end - options.defaultTimespan;
timeSystem.defaults(defaults);
}
openmct.conductor.timeSystem(timeSystem, defaults.bounds);
}
}