This is an automated email from the ASF dual-hosted git repository. hanahmily pushed a commit to branch bug/e2e in repository https://gitbox.apache.org/repos/asf/incubator-skywalking-ui.git
commit f0bcc667c7f2510285883c37c113271c964e0d37 Author: hanahmily <[email protected]> AuthorDate: Fri Mar 9 14:39:38 2018 +0800 Remove quick click --- package-lock.json | 5 ----- package.json | 5 ++--- src/index.js | 3 --- 3 files changed, 2 insertions(+), 11 deletions(-) diff --git a/package-lock.json b/package-lock.json index 711ba2d..7bdd1e0 100644 --- a/package-lock.json +++ b/package-lock.json @@ -6187,11 +6187,6 @@ "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", "dev": true }, - "fastclick": { - "version": "1.0.6", - "resolved": "http://registry.npm.taobao.org/fastclick/download/fastclick-1.0.6.tgz", - "integrity": "sha1-FhYlsnsaWAZAWTa9qaLBkm0Gvmo=" - }, "fastparse": { "version": "1.1.1", "resolved": "http://registry.npm.taobao.org/fastparse/download/fastparse-1.1.1.tgz", diff --git a/package.json b/package.json index 0eb2bae..891fa8f 100755 --- a/package.json +++ b/package.json @@ -4,8 +4,8 @@ "description": "A web interface of Apache SkyWalking", "homepage": "https://github.com/apache/incubator-skywalking-ui", "bugs": { - "url" : "https://github.com/apache/incubator-skywalking-ui/issues", - "email" : "[email protected]" + "url": "https://github.com/apache/incubator-skywalking-ui/issues", + "email": "[email protected]" }, "license": "Apache-2.0", "author": { @@ -44,7 +44,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", diff --git a/src/index.js b/src/index.js index 0cee0a3..460b7a5 100644 --- a/src/index.js +++ b/src/index.js @@ -25,7 +25,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 './index.less'; // 1. Initialize @@ -46,6 +45,4 @@ app.router(require('./router').default); app.start('#root'); -FastClick.attach(document.body); - export default app._store; // eslint-disable-line -- To stop receiving notification emails like this one, please contact [email protected].
