1
0
Fork 0
mirror of https://github.com/LaQuay/TDTChannels.git synced 2025-10-13 18:50:18 +02:00

Add analytics

This commit is contained in:
Marc 2018-12-26 18:18:24 +01:00
parent 1f4c9cbf45
commit 3cf215477e
2 changed files with 40 additions and 0 deletions

View file

@ -2,6 +2,10 @@
<head>
<meta charset="utf-8"/>
<title>TDT Channels - Marc Vila</title>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-27327609-3"></script>
<script src="./analytics.js"></script>
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/clappr@latest/dist/clappr.min.js"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
@ -150,6 +154,13 @@
clearResolutions();
getResolution(channelToReproduce, updateResolution);
}
ga('send', {
hitType: 'event',
eventCategory: 'Video',
eventAction: 'play',
eventLabel: channelToReproduce
});
}
function reproduceAudio(channelToReproduce) {
@ -178,6 +189,13 @@
// Show a UI element to let the user manually start playback.
});
}
ga('send', {
hitType: 'event',
eventCategory: 'Audio',
eventAction: 'play',
eventLabel: channelToReproduce
});
}
function reproducePLSFromUrl(data) {