[Time Conductor] Fix logic around end times

Fix logic for updating end times after refactoring
to clarify variable/property naming, WTD-1515
This commit is contained in:
Victor Woeltjen 2015-09-10 13:24:50 -07:00
parent 8d209f4d19
commit 2229e868ce

View File

@ -186,7 +186,7 @@ define(
ngModel.inner.start =
Math.max(ngModel.outer.start, ngModel.inner.start);
ngModel.inner.end =
Math.max(ngModel.outer.end, ngModel.inner.end);
Math.max(ngModel.outer.start, ngModel.inner.end);
updateViewForInnerSpanFromModel(ngModel);
}