This file (511B) exceeds the allowed full mode (48 kb) size. The editor full height is disabled, only scrolling is allowed.
If you wish to edit a file, it is recommended to use the scroll mode as some users do not like the full height mode.
/**
* Google Analytics helper -- exact port of Angular gtag calls.
* Sends page_path events via gtag('config', ...).
*/
import { useSettingsStore } from './settings.store'
const isBot = /spider|bot|yahoo|bing|google|yandex|crawl|slurp|curl/i.test(navigator.userAgent)
export function trackPage(pagePath: string): void {
if (isBot) return
try {
const ga = useSettingsStore().googleAnalytics
;(window as any).gtag?.('config', ga, { page_path: pagePath })
} catch { /* noop */ }
}
| / | Focus search |
| ? | Show this help |
| Esc | Unfocus input |