UNPKG
@sncf/bootstrap-sncf.communication
Version:
latest (4.3.1-r5)
4.3.1-r5
4.3.1-r4fix
4.3.1-r3
4.3.1-r2
4.3.1-r1
4.3.1-r0
4.0.0-r6
4.0.0-r5-fix
4.0.0-r4test
SNCF frontend framework
sn.cf/socledesign
SNCFdevelopers/bootstrap-sncf
@sncf/bootstrap-sncf.communication
/
src
/
js
/
docs
/
stop-propagation.js
11 lines
(9 loc)
•
267 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
/* * Avoid hiding menu when changing settings */
const
menu =
document
.
getElementById
(
'dropdownSettingsMenu'
).
querySelectorAll
(
'[data-role="stop-propagation"]'
) menu.
forEach
(
(
el
) =>
{ el.
addEventListener
(
'click'
,
(
event
) =>
{ event.
stopPropagation
() }) })