You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Multiple instances of Tobii does not work. Last will work, others - not.
Example:
<a href="https://img.youtube.com/vi/HHi8qOtHnhE/maxresdefault.jpg" class="first" data-group="first">
First - this will not work
</a>
<a href="https://img.youtube.com/vi/HHi8qOtHnhE/maxresdefault.jpg" class="second" data-group="second">
Second - this will work
</a>
const tobii_first = new Tobii({
selector: '.first'
})
const tobii_second = new Tobii({
selector: '.second'
})
This can be issue, when you want to track events, right now you get event from all objects, without knowing which exactly. (separate bug)
The text was updated successfully, but these errors were encountered:
For example because of this bug: #75
But if we fix it, this becomes low priority or closed I guess.
Another idea is show console warning about multiple instances, so devs don't waste time doing it and not getting result they want?
Multiple instances of Tobii does not work. Last will work, others - not.
Example:
This can be issue, when you want to track events, right now you get event from all objects, without knowing which exactly. (separate bug)
The text was updated successfully, but these errors were encountered: