Fix tintColor prop platform in Image

Summary:
`tintColor`, even in style, works on Android; this must be some old comment but that confused me when reading the docs.

**Test plan:**
- Launched website locally
Closes https://github.com/facebook/react-native/pull/7465

Differential Revision: D3278166

fbshipit-source-id: 4e986e0f2a9ba05de4404b93d28687596fbb4fad
This commit is contained in:
Jimmy Mayoukou 2016-05-09 15:28:40 -07:00 коммит произвёл Facebook Github Bot 2
Родитель 6d1790a625
Коммит d3e5a96b15
1 изменённых файлов: 0 добавлений и 2 удалений

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

@ -31,9 +31,7 @@ var ImageStylePropTypes = {
overflow: ReactPropTypes.oneOf(['visible', 'hidden']),
/**
* iOS-Specific style to "tint" an image.
* Changes the color of all the non-transparent pixels to the tintColor.
* @platform ios
*/
tintColor: ColorPropType,
opacity: ReactPropTypes.number,