marc-leopold/app/plugins/owa.js

27 lines
984 B
JavaScript
Raw Normal View History

2020-05-05 16:54:58 +00:00
/* eslint-disable */
export default ({ app }) => {
/*
* ** Only run on client-side and only in production mode
* */
if (process.env.NODE_ENV !== 'production') return
var owa_baseUrl = 'https://owa.isnet.uk/';
var owa_cmds = owa_cmds || [];
owa_cmds.push(['setSiteId', '0c3a9f11563be70da80f493a590b46d1']);
(function() {
var _owa = document.createElement('script'); _owa.type = 'text/javascript'; _owa.async = true;
owa_baseUrl = ('https:' == document.location.protocol ? window.owa_baseSecUrl || owa_baseUrl.replace(/http:/, 'https:') : owa_baseUrl );
_owa.src = owa_baseUrl + 'modules/base/js/owa.tracker-combined-min.js';
var _owa_s = document.getElementsByTagName('script')[0]; _owa_s.parentNode.insertBefore(_owa, _owa_s);
}());
/*
* ** Every time the route changes (fired on initialization too)
* */
app.router.afterEach((to, from) => {
owa_cmds.push(['trackPageView']);
owa_cmds.push(['trackClicks']);
})
}