Fix bad wording in pointer events doc
Summary:Fix bad wording in the docs change I did in #6534 cc mkonicek Closes https://github.com/facebook/react-native/pull/6598 Differential Revision: D3085957 Pulled By: vjeux fb-gh-sync-id: 2b45ac72acf089be6cf8e815aac430a2ce9d08ed shipit-source-id: 2b45ac72acf089be6cf8e815aac430a2ce9d08ed
This commit is contained in:
parent
ca353d0829
commit
56c40baa06
|
@ -232,7 +232,7 @@ const View = React.createClass({
|
|||
* - 'auto': The View can be the target of touch events.
|
||||
* - 'none': The View is never the target of touch events.
|
||||
* - 'box-none': The View is never the target of touch events but it's
|
||||
* subviews can be. It behaves like if the following classes
|
||||
* subviews can be. It behaves like if the view had the following classes
|
||||
* in CSS:
|
||||
* ```
|
||||
* .box-none {
|
||||
|
@ -243,7 +243,7 @@ const View = React.createClass({
|
|||
* }
|
||||
* ```
|
||||
* - 'box-only': The view can be the target of touch events but it's
|
||||
* subviews cannot be. It behaves like if the following classes
|
||||
* subviews cannot be. It behaves like if the view had the following classes
|
||||
* in CSS:
|
||||
* ```
|
||||
* .box-only {
|
||||
|
|
Loading…
Reference in New Issue