mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-08 04:13:41 -05:00
23 lines
331 B
JavaScript
23 lines
331 B
JavaScript
|
|
(function(Modules) {
|
||
|
|
"use strict";
|
||
|
|
|
||
|
|
Modules.TrackError = function() {
|
||
|
|
|
||
|
|
this.start = function(component) {
|
||
|
|
|
||
|
|
if (!ga) return;
|
||
|
|
|
||
|
|
ga(
|
||
|
|
'send',
|
||
|
|
'event',
|
||
|
|
'Error',
|
||
|
|
$(component).data('error-type'),
|
||
|
|
$(component).data('error-label')
|
||
|
|
);
|
||
|
|
|
||
|
|
};
|
||
|
|
|
||
|
|
};
|
||
|
|
|
||
|
|
})(window.GOVUK.Modules);
|