[ReactNative] make AdsManager floater and TouchableHighlight accessible

This commit is contained in:
Dorota Kapturkiewicz 2015-08-10 04:20:10 -07:00
parent 94caefa9c2
commit 59b974eafb
1 changed files with 1 additions and 1 deletions

View File

@ -206,6 +206,7 @@ var TouchableHighlight = React.createClass({
render: function() {
return (
<View
accessible={true}
ref={UNDERLAY_REF}
style={this.state.underlayStyle}
onStartShouldSetResponder={this.touchableHandleStartShouldSetResponder}
@ -218,7 +219,6 @@ var TouchableHighlight = React.createClass({
onlyChild(this.props.children),
{
ref: CHILD_REF,
accessible: true,
testID: this.props.testID,
}
)}