use arrow function

This commit is contained in:
afc163
2015-08-18 20:27:40 +08:00
parent e95e557077
commit c3294dfc64
+1 -3
View File
@@ -63,9 +63,7 @@ export default React.createClass({
// 100ms 内发生过点击事件,则从点击位置动画展示
// 否则直接 zoom 展示
// 这样可以兼容非点击方式展开
setTimeout(function() {
mousePosition = null;
}, 100);
setTimeout(() => mousePosition = null, 100);
});
mousePositionEventBinded = true;
},