Use passive listener in privacy_dropdown.js (#5037)
This commit is contained in:
		
							parent
							
								
									245816ab27
								
							
						
					
					
						commit
						0df6442636
					
				| @ -2,6 +2,7 @@ import React from 'react'; | ||||
| import PropTypes from 'prop-types'; | ||||
| import { injectIntl, defineMessages } from 'react-intl'; | ||||
| import IconButton from '../../../components/icon_button'; | ||||
| import detectPassiveEvents from 'detect-passive-events'; | ||||
| 
 | ||||
| const messages = defineMessages({ | ||||
|   public_short: { id: 'privacy.public.short', defaultMessage: 'Public' }, | ||||
| @ -89,12 +90,12 @@ export default class PrivacyDropdown extends React.PureComponent { | ||||
| 
 | ||||
|   componentDidMount () { | ||||
|     window.addEventListener('click', this.onGlobalClick); | ||||
|     window.addEventListener('touchstart', this.onGlobalClick); | ||||
|     window.addEventListener('touchstart', this.onGlobalClick, detectPassiveEvents.hasSupport ? { passive: true } : false); | ||||
|   } | ||||
| 
 | ||||
|   componentWillUnmount () { | ||||
|     window.removeEventListener('click', this.onGlobalClick); | ||||
|     window.removeEventListener('touchstart', this.onGlobalClick); | ||||
|     window.removeEventListener('touchstart', this.onGlobalClick, detectPassiveEvents.hasSupport ? { passive: true } : false); | ||||
|   } | ||||
| 
 | ||||
|   setRef = (c) => { | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user