diff --git a/docs/reo-tracking.js b/docs/reo-tracking.js new file mode 100644 index 000000000..b24abd018 --- /dev/null +++ b/docs/reo-tracking.js @@ -0,0 +1,16 @@ +(function() { + var clientID = 'e1256ea7e23318f'; + + var initReo = function() { + Reo.init({ + clientID: clientID + }); + }; + + var script = document.createElement('script'); + script.src = 'https://static.reo.dev/' + clientID + '/reo.js'; + script.defer = true; + script.onload = initReo; + + document.head.appendChild(script); +})(); \ No newline at end of file