| Index: client/view/ConveyorView.dart
|
| diff --git a/client/view/ConveyorView.dart b/client/view/ConveyorView.dart
|
| index 6b48ebdf436977627e0600ca99524ce5c78589a9..efcec80d40a528a8041af17c8d8f43e8dbd114d5 100644
|
| --- a/client/view/ConveyorView.dart
|
| +++ b/client/view/ConveyorView.dart
|
| @@ -55,9 +55,9 @@ class ConveyorView extends CompositeView {
|
| final style = container.style;
|
| // TODO(jacobr): modify setTransitionDuration so the input is always
|
| // specified in miliseconds rather than accepting a string.
|
| - Css.setTransitionDuration(style, '${durationSeconds}s');
|
| + style.transitionDuration = '${durationSeconds}s';
|
| final xTranslationPercent = -index * 100;
|
| - Css.setTransform(style, 'translate3d(${xTranslationPercent}%, 0px, 0px)');
|
| + style.transform = 'translate3d(${xTranslationPercent}%, 0px, 0px)';
|
|
|
| if (animationTimeoutId != null) {
|
| window.clearTimeout(animationTimeoutId);
|
|
|