Need the possibility of disabling fastclick on a specific element.
My particular case was an input type file that is hidden, but the label is used as a button to activate it.
e.g.
<label htmlFor="addFileInput" >
<i className="icon-add-1" />
</label>
<input className="hidden" id="addFileInput" type="file" accept="image/*" onChange={this.handleUploadFile} ref={ref => { this.fileInput = ref; }} />
pull request coming...