Docs: added symlinks for paths resolution, removed jquery loading (#1050)

This commit is contained in:
Michael Panchenko 2024-02-12 17:38:25 +01:00 committed by GitHub
parent e3c610d37c
commit d3fe87b70d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 2 additions and 28 deletions

1
docs/_static/js/atari/benchmark vendored Symbolic link
View File

@ -0,0 +1 @@
../../../../examples/atari/benchmark

View File

@ -1,17 +1,3 @@
// Immediately-invoked function expression - load JQuery
(function() {
// Load the script
const script = document.createElement("script");
script.src = 'https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js';
script.type = 'text/javascript';
script.addEventListener('load', () => {
console.log(`jQuery ${$.fn.jquery} has been loaded successfully!`);
// use jQuery below
});
document.head.appendChild(script);
})();
var mujoco_envs = [
"Ant-v3",
"HalfCheetah-v3",

View File

@ -1,17 +1,3 @@
// Immediately-invoked function expression - load JQuery
(function() {
// Load the script
const script = document.createElement("script");
script.src = 'https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js';
script.type = 'text/javascript';
script.addEventListener('load', () => {
console.log(`jQuery ${$.fn.jquery} has been loaded successfully!`);
// use jQuery below
});
document.head.appendChild(script);
})();
document.addEventListener('DOMContentLoaded', function() {
/* Add a [>>>] button on the top-right corner of code samples to hide
* the >>> and ... prompts and the output and thus make the code

1
docs/_static/js/mujoco/benchmark vendored Symbolic link
View File

@ -0,0 +1 @@
../../../../examples/mujoco/benchmark