mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-08 22:18:10 -05:00
Add Reo.dev tracking script to documentation (#3094)
This commit is contained in:
16
docs/reo-tracking.js
Normal file
16
docs/reo-tracking.js
Normal file
@@ -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);
|
||||||
|
})();
|
||||||
Reference in New Issue
Block a user