mirror of https://github.com/zulip/zulip.git
11 lines
273 B
JavaScript
11 lines
273 B
JavaScript
|
import { gtag, install } from "ga-gtag";
|
||
|
|
||
|
export let config;
|
||
|
|
||
|
if (page_params.google_analytics_id !== undefined) {
|
||
|
install(page_params.google_analytics_id);
|
||
|
config = (info) => gtag("config", page_params.google_analytics_id, info);
|
||
|
} else {
|
||
|
config = () => {};
|
||
|
}
|