mirror of
https://github.com/Hopiu/bootstrap.git
synced 2026-04-03 04:50:24 +00:00
Remove assignment from return.
This commit is contained in:
parent
5bcd6a29cd
commit
5ac1a12625
1 changed files with 4 additions and 2 deletions
|
|
@ -87,9 +87,11 @@ function getUidEvent(element, uid) {
|
|||
|
||||
function getEvent(element) {
|
||||
const uid = getUidEvent(element)
|
||||
element.uidEvent = uid
|
||||
|
||||
return eventRegistry[uid] = eventRegistry[uid] || {}
|
||||
element.uidEvent = uid
|
||||
eventRegistry[uid] = eventRegistry[uid] || {}
|
||||
|
||||
return eventRegistry[uid]
|
||||
}
|
||||
|
||||
function fixEvent(event, element) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue