mirror of
https://github.com/twbs/bootstrap.git
synced 2025-08-14 09:34:36 +02:00
Remove assignment from return.
This commit is contained in:
@@ -87,9 +87,11 @@ function getUidEvent(element, uid) {
|
|||||||
|
|
||||||
function getEvent(element) {
|
function getEvent(element) {
|
||||||
const uid = getUidEvent(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) {
|
function fixEvent(event, element) {
|
||||||
|
Reference in New Issue
Block a user