Revert "fix: fix fastclick export error[#1]"
This commit is contained in:
郭云龙 2018-04-13 17:33:38 +08:00 committed by GitHub
commit 1647dc7fb8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -7,11 +7,11 @@ import App from './App'
import '../components/_style/global.styl' import '../components/_style/global.styl'
import './theme.custom.styl' import './theme.custom.styl'
import {FastClick} from 'fastclick' import fastClick from 'fastclick'
if ('ontouchstart' in window) { if ('ontouchstart' in window) {
FastClick.attach(document.body) fastClick(document.body)
} }