mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-24 07:14:04 +00:00
12 lines
489 B
JavaScript
12 lines
489 B
JavaScript
|
let GoogleAnalytics = (() => {
|
||
|
function getGoogleAnalyticsScript(tagId) {
|
||
|
return "<script async src=\"https://www.googletagmanager.com/gtag/js?id=" + tagId + "\"></script>" +
|
||
|
"<script>window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date());gtag('config', '" + tagId + "'); </script>";
|
||
|
}
|
||
|
return {
|
||
|
getGoogleAnalyticsScript: getGoogleAnalyticsScript
|
||
|
};
|
||
|
})();
|
||
|
|
||
|
module.exports = GoogleAnalytics;
|