From e95bc70822c7bf92416d897ea221351dd0fbe554 Mon Sep 17 00:00:00 2001
From: Brian Peiris <brianpeiris@gmail.com>
Date: Mon, 16 Apr 2018 10:58:24 -0700
Subject: [PATCH] fix animation logic in chrome

---
 src/react-components/avatar-selector.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/react-components/avatar-selector.js b/src/react-components/avatar-selector.js
index 528d5b815..6ae6ab6ac 100644
--- a/src/react-components/avatar-selector.js
+++ b/src/react-components/avatar-selector.js
@@ -39,7 +39,7 @@ class AvatarSelector extends Component {
       // so we need to force it here.
       const currRot = this.animation.parentNode.getAttribute("rotation");
       const currY = currRot.y;
-      const toRot = String.split(this.animation.attributes.to.value, " ");
+      const toRot = this.animation.getAttribute("to").split(" ");
       const toY = toRot[1];
       const step = 360.0 / this.props.avatars.length;
       const brokenlyBigRotation = Math.abs(toY - currY) > 3 * step;
-- 
GitLab