mirror of
https://github.com/crewAIInc/crewAI.git
synced 2025-12-15 11:58:31 +00:00
Add Reo.dev tracking script to documentation (#3094)
Some checks failed
Notify Downstream / notify-downstream (push) Has been cancelled
Some checks failed
Notify Downstream / notify-downstream (push) Has been cancelled
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