mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-09-17 17:06:56 +08:00
Feature - Google Analytics - Addressing PR Comments.
This commit is contained in:
11
server/modules/google-analytics.js
Normal file
11
server/modules/google-analytics.js
Normal file
@@ -0,0 +1,11 @@
|
||||
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;
|
Reference in New Issue
Block a user