Merge pull request #1505 from nasa/conductor-unpleasantness

[Time Conductor] Removed caching of UTC Time System defaults
This commit is contained in:
Pete Richards
2017-04-04 16:03:32 -07:00
committed by GitHub
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);
}
}