mirror of
https://github.com/Doodle3D/Doodle3D-Core.git
synced 2024-11-04 21:53:24 +01:00
remove on touch tap
This commit is contained in:
parent
3670802bea
commit
02e312247c
9
package-lock.json
generated
9
package-lock.json
generated
@ -11816,15 +11816,6 @@
|
||||
"prop-types": "15.6.0"
|
||||
}
|
||||
},
|
||||
"react-tap-event-plugin": {
|
||||
"version": "3.0.2",
|
||||
"resolved": "https://registry.npmjs.org/react-tap-event-plugin/-/react-tap-event-plugin-3.0.2.tgz",
|
||||
"integrity": "sha1-KANxZ3uIHDE3bgAnoLhtLG3gOe4=",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"fbjs": "0.8.16"
|
||||
}
|
||||
},
|
||||
"read": {
|
||||
"version": "1.0.7",
|
||||
"resolved": "https://registry.npmjs.org/read/-/read-1.0.7.tgz",
|
||||
|
@ -87,7 +87,6 @@
|
||||
"normalize-jss": "^4.0.0",
|
||||
"raw-loader": "^0.5.1",
|
||||
"react-dom": "^16.1.1",
|
||||
"react-tap-event-plugin": "^3.0.2",
|
||||
"redux": "^3.7.2",
|
||||
"redux-action-wrapper": "^1.0.1",
|
||||
"redux-logger": "^3.0.6",
|
||||
|
@ -37,7 +37,7 @@ export default class Button extends React.Component {
|
||||
if (className) combinedClassName += ` ${className}`;
|
||||
|
||||
return (
|
||||
<div id={id} className={combinedClassName} onTouchTap={this.onClick}>
|
||||
<div id={id} className={combinedClassName} onClick={this.onClick}>
|
||||
{svg && <svg>
|
||||
<use xlinkHref={svg}/>
|
||||
</svg>}
|
||||
|
Loading…
Reference in New Issue
Block a user