release
parent
5f065d4793
commit
1bcc52e587
|
@ -25,9 +25,8 @@ const _getSanitizedData = (props) => {
|
||||||
}
|
}
|
||||||
|
|
||||||
const _handleClick = (e, props) => {
|
const _handleClick = (e, props) => {
|
||||||
if (!props.onClick) {
|
if (!props.onClick) { return }
|
||||||
return
|
|
||||||
}
|
|
||||||
var { onClick } = props,
|
var { onClick } = props,
|
||||||
emoji = _getSanitizedData(props)
|
emoji = _getSanitizedData(props)
|
||||||
|
|
||||||
|
@ -35,9 +34,8 @@ const _handleClick = (e, props) => {
|
||||||
}
|
}
|
||||||
|
|
||||||
const _handleOver = (e, props) => {
|
const _handleOver = (e, props) => {
|
||||||
if (!props.onOver) {
|
if (!props.onOver) { return }
|
||||||
return
|
|
||||||
}
|
|
||||||
var { onOver } = props,
|
var { onOver } = props,
|
||||||
emoji = _getSanitizedData(props)
|
emoji = _getSanitizedData(props)
|
||||||
|
|
||||||
|
@ -45,9 +43,8 @@ const _handleOver = (e, props) => {
|
||||||
}
|
}
|
||||||
|
|
||||||
const _handleLeave = (e, props) => {
|
const _handleLeave = (e, props) => {
|
||||||
if (!props.onLeave) {
|
if (!props.onLeave) { return }
|
||||||
return
|
|
||||||
}
|
|
||||||
var { onLeave } = props,
|
var { onLeave } = props,
|
||||||
emoji = _getSanitizedData(props)
|
emoji = _getSanitizedData(props)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue