Browse Source

Remove fastclick

pull/1031/merge
afc163 8 years ago
parent
commit
234c97fecb
  1. 1
      package.json
  2. 4
      src/index.js

1
package.json

@ -30,7 +30,6 @@
"dva": "^2.1.0",
"dva-loading": "^1.0.4",
"enquire-js": "^0.1.1",
"fastclick": "^1.0.6",
"lodash": "^4.17.4",
"lodash-decorators": "^4.4.1",
"moment": "^2.19.1",

4
src/index.js

@ -7,7 +7,6 @@ import createHistory from 'history/createHashHistory';
// import createHistory from 'history/createBrowserHistory';
import createLoading from 'dva-loading';
import 'moment/locale/zh-cn';
import FastClick from 'fastclick';
import './rollbar';
import './index.less';
@ -28,7 +27,4 @@ app.router(require('./router').default);
// 5. Start
app.start('#root');
FastClick.attach(document.body);
export default app._store; // eslint-disable-line

Loading…
Cancel
Save