[Time Conductor] Use time systems from time conductor

This commit is contained in:
Victor Woeltjen
2015-10-22 13:07:04 -07:00
parent 9bc4327c59
commit e8d7093eb5
7 changed files with 42 additions and 24 deletions

View File

@ -41,7 +41,7 @@ define(
initialDragValue;
function timeSystemKey() {
return ($scope.parameters || {}).domain;
return ($scope.parameters || {}).system;
}
function formatTimestamp(ts) {
@ -57,7 +57,7 @@ define(
}
}
// From 0.0-1.0 to "0%"-"1%"
// From 0.0-1.0 to "0%"-"100%"
function toPercent(p) {
return (100 * p) + "%";
}