pointer_events_polyfill icon indicating copy to clipboard operation
pointer_events_polyfill copied to clipboard

Use e.target instead of this

Open crazyx13th opened this issue 9 years ago • 0 comments

Hey there,

maybe it's better to use

if ($(e.target).css('pointer-events') == 'none') {

instead of

if ($(this).css('pointer-events') == 'none') {

?

Becaus inner pointer-events are ignored at the moment, like:

.template-front
{
    pointer-events: none;

    .dev-cm7
    {
        pointer-events: auto;
    }
}

Thanks!

crazyx13th avatar Jul 16 '15 10:07 crazyx13th