The XenForo OverlayTrigger js object appears to ignore it's options parameter. At least in IE11.
I was trying to supress the mask that is applied when an overlay is triggered with:
But this would fail, the following works (empty options or not);
I was trying to supress the mask that is applied when an overlay is triggered with:
Code:
$overlay = new XenForo.OverlayTrigger($trigger,
{
mask: false,
});
But this would fail, the following works (empty options or not);
Code:
$trigger.data('overlayoptions', {
mask: false,
});
$overlay = new XenForo.OverlayTrigger($trigger,
{
mask: false,
});