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
The data-tier is built to be able to run multiple times within the same page.
All of the instances will collect the views, and all of them will process and track them, each for it's own.
BUT, the DOM is global, not encapsulated. Therefore, if several data-tier instances will define the same tie key, they'll struggle over the same views and will update them together - mess.
Should at least have some warning on the duplication of tie keys globally.
Should probably enforce global uniqueness of the tie keys
The text was updated successfully, but these errors were encountered:
The
data-tier
is built to be able to run multiple times within the same page.All of the instances will collect the views, and all of them will process and track them, each for it's own.
BUT, the DOM is global, not encapsulated. Therefore, if several
data-tier
instances will define the same tie key, they'll struggle over the same views and will update them together - mess.The text was updated successfully, but these errors were encountered: