Last active
October 31, 2018 10:11
-
-
Save Gegam/242f19de3e466c6961ed to your computer and use it in GitHub Desktop.
user session
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function () { | |
| var label = 0; | |
| setInterval(function () { | |
| label += 10; | |
| if (label >= 20) { | |
| ga('b.send', 'event', 'Время на странице', label); | |
| } | |
| }, 10000); | |
| })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment