File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 6666 .then(html => {
6767 // Set the current document's HTML to the fetched content
6868 document.documentElement.innerHTML = html;
69- // After setting `elm .innerHTML = ...`, run scripts manually
70- elm .querySelectorAll('script').forEach(oldScript => {
69+ // After setting `document.documentElement .innerHTML = ...`, run scripts manually
70+ document.documentElement .querySelectorAll('script').forEach(oldScript => {
7171 const newScript = document.createElement('script');
7272 // copy over all attributes (e.g. src, type, async, etc.)
7373 for (const { name, value } of oldScript.attributes) {
9292 branch : gh-pages # The branch the action should deploy to.
9393 folder : docs # The folder the action should deploy.
9494 target-folder : .
95- clean : true
9695 single-commit : true
You can’t perform that action at this time.
0 commit comments