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
Config options defined in the previous version should still work.
AutoTracking / AutoCollector :
New default values:
recordPageViewsOnExit : true// in v4 it was False
Changes in the behaviour:
recordClicks: true// it means that we should record ALL clicks, not only on Links,
Cleaner syntax of the config, with additional options:
clicks: {record: true,selectors: ['a','button','.some-class-123','#element1'],// record clicks only on these elementsonce: false,// remove event listener after an event happenedposition: {pointer: true,// record exact x,y position of the cursor/touchelement: true// record element's x,y position}}
views: {page: {record: true,// ...},element: {record: true,selectors: ['.track-element-view'],once: false}}
The text was updated successfully, but these errors were encountered:
Config options defined in the previous version should still work.
AutoTracking / AutoCollector :
New default values:
Changes in the behaviour:
Cleaner syntax of the config, with additional options:
The text was updated successfully, but these errors were encountered: