mirror of
https://github.com/onkelbeh/cheatsheets.git
synced 2025-10-16 15:38:44 +02:00
- Update some sheets which have very long sections - Remove `layout: 2017/sheet` (everything has the same layout now) - Remove outdated sheets
720 B
720 B
title, category, updated, intro
title | category | updated | intro |
---|---|---|---|
Google Analytics's analytics.js | Analytics | 2017-10-29 | Google Analytics's analytics.js is deprecated. |
Page view
ga('create', 'UA-XXXX-Y', 'auto')
ga('create', 'UA-XXXX-Y', { userId: 'USER_ID' })
ga('send', 'pageview')
ga('send', 'pageview', { 'dimension15': 'My custom dimension' })
Events
ga('send', 'event', 'button', 'click', {color: 'red'});
ga('send', 'event', 'button', 'click', 'nav buttons', 4);
/* ^category ^action ^label ^value */
Exceptions
ga('send', 'exception', {
exDescription: 'DatabaseError',
exFatal: false,
appName: 'myapp',
appVersion: '0.1.2'
})