Warning: bind(): You are binding a component method to the component

Summary:
Warning: bind(): You are binding a component method to the component.
React does this for you automatically in a high-performance way, so you can safely remove this call. See TouchableOpacity
Closes https://github.com/facebook/react-native/pull/10349

Differential Revision: D4008552

Pulled By: javache

fbshipit-source-id: d98fe9a0d694dee74ea872e51b02fbd75a133e43
This commit is contained in:
leeight 2016-10-12 08:16:27 -07:00 коммит произвёл Facebook Github Bot
Родитель d91a5c4ffb
Коммит ddb1e44b43
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -571,7 +571,7 @@ var TouchableMixin = {
return;
}
UIManager.measure(tag, this._handleQueryLayout.bind(this));
UIManager.measure(tag, this._handleQueryLayout);
},
_handleQueryLayout: function(l, t, w, h, globalX, globalY) {