ENXF NET
Administrator
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P.S Member
S.V.I.P Member
V.I.P Member
Collaborate
Registered
- Joined
- Nov 13, 2018
- Messages
- 26,006
- Points
- 823
Reputation:
Code:
If a
This applies to
Continue reading...
Code:
const e = new Event('overlay:before-show')
options.beforeShow(overlay, e)
if (e.defaultPrevented)
{
return
}
If a
_beforeShow
implementation calls e.preventDefault();
this will silently fail. Setting e.cancelable = true;
before the call will then work but is very much an unexpected break.This applies to
_afterShow
as well.Continue reading...