aboutsummaryrefslogtreecommitdiff
path: root/public/javascripts/analytics.js
diff options
context:
space:
mode:
Diffstat (limited to 'public/javascripts/analytics.js')
-rw-r--r--public/javascripts/analytics.js35
1 files changed, 0 insertions, 35 deletions
diff --git a/public/javascripts/analytics.js b/public/javascripts/analytics.js
deleted file mode 100644
index a93c8a4..0000000
--- a/public/javascripts/analytics.js
+++ /dev/null
@@ -1,35 +0,0 @@
-/* global ga */
-
-const self = {}
-
-self.send = {}
-
-self.send.search = function (selectedUser, favorite) {
- const hitType = 'event'
-
- const eventCategory = favorite ? 'search fav' : 'search'
-
- let eventAction
- switch (selectedUser.type) {
- case 'c':
- eventAction = 'Class'
- break
- case 't':
- eventAction = 'Teacher'
- break
- case 'r':
- eventAction = 'Room'
- break
- case 's':
- eventAction = 'Student'
- break
- }
-
- const eventLabel = selectedUser.value
-
- ga(function () {
- ga('send', { hitType, eventCategory, eventAction, eventLabel })
- })
-}
-
-module.exports = self