Add debug scripts to ansible-docs.html and ansible-sandbox.html: Included console log statements for easier debugging during development.
This commit is contained in:
parent
4f021f5f38
commit
0937c4bd7a
|
@ -1,6 +1,10 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<script>
|
||||
console.log("DEBUG: ansible-docs.html is being loaded");
|
||||
// You can check this in your browser's developer console
|
||||
</script>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Ansible Sandbox Documentation | Argobox</title>
|
||||
|
|
|
@ -1,6 +1,10 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<script>
|
||||
console.log("DEBUG: ansible-sandbox.html is being loaded");
|
||||
// You can check this in your browser's developer console
|
||||
</script>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Argobox | Ansible Sandbox</title>
|
||||
|
|
Loading…
Reference in New Issue