release
Etienne Lemay 2019-03-28 08:22:30 -04:00
parent 5f065d4793
commit 1bcc52e587
No known key found for this signature in database
GPG Key ID: EE7CF89146BB28E9
1 changed files with 6 additions and 9 deletions

View File

@ -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)