mirror of
https://github.com/wahyd4/crawlab.git
synced 2026-08-28 06:26:08 +10:00
13 lines
345 B
JavaScript
13 lines
345 B
JavaScript
export default {
|
|
sendPv (page) {
|
|
if (localStorage.getItem('useStats') !== '0') {
|
|
window._hmt.push(['_trackPageview', page])
|
|
}
|
|
},
|
|
sendEv (category, eventName, optLabel, optValue) {
|
|
if (localStorage.getItem('useStats') !== '0') {
|
|
window._hmt.push(['_trackEvent', category, eventName, optLabel, optValue])
|
|
}
|
|
}
|
|
}
|