-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.js
More file actions
33 lines (29 loc) · 673 Bytes
/
plugin.js
File metadata and controls
33 lines (29 loc) · 673 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
export default ({ app: { router } }) => {
let ready = false
router.onReady(() => {
ready = true
})
function create () {
const settings = {
project: '<%= options.id %>',
attributes_dataset: '<%= JSON.stringify(options.attributesDataset) %>'
}
try {
// eslint-disable-next-line
window.top100Counter = new window.top100(settings)
} catch (e) {}
router.afterEach((to, from) => {
if (!ready) {
return
}
window.top100Counter.trackPageview()
})
}
if (window.top100) {
create()
} else {
;(function (w, c) {
w[c] = w[c] || [].push(create)
})(window, '_top100q')
}
}