We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d87c0a commit 9d5db4fCopy full SHA for 9d5db4f
index.html
@@ -24,7 +24,7 @@
24
<script>
25
const path = location.hash.replace(/^#/, "");
26
const script = document.createElement("script");
27
- script.src = `${path}.js`;
+ script.src = `tables/${path}.js` || "Empty";
28
script.onload = () => initPlanilha();
29
script.onerror = () => alert("Table not found: " + path + ".");
30
document.head.appendChild(script);
0 commit comments