Skip to content

Instantly share code, notes, and snippets.

@chaffeqa
Created February 23, 2016 13:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chaffeqa/0e7d610a95cb8680401e to your computer and use it in GitHub Desktop.
Save chaffeqa/0e7d610a95cb8680401e to your computer and use it in GitHub Desktop.
// original s_code (AppMeasurements) use:
s.pageName="leaderboard"
s.heir="ncaa:bcg:leaderboard"
s.channel="ncaa|bcg|leaderboard"
s.eVar3="men"
s.eVar4="ncaa"
// ...more eVar / prop setting
s.t()
// This would fire a pixel with ?v3="men"&v4="ncaa"&p="leaderboard" ... ect
// code with proposed setup using DTM
s = {}
s.pageName="leaderboard"
s.heir="ncaa:bcg:leaderboard"
s.channel="ncaa|bcg|leaderboard"
s.eVar3="men"
s.eVar4="ncaa"
// ...more eVar / prop setting
_satelite.track('pageview')
// This would fire a pixel with ?v3="men"&v4="ncaa"&p="leaderboard" ... ect
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment