Skip to content

Commit

Permalink
minor bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelsboost committed May 11, 2024
1 parent 4da4be0 commit af8f180
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Binary file modified .DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion go/bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -157270,7 +157270,7 @@ SOFTWARE.`;
let styleCSS = '/* imports */\n';
project.libraries.forEach(library => {
if (library.endsWith('.js')) {
scriptTags += `<script src="${library}" defer></script>\n `;
scriptTags += `<script src="${library}"></script>\n `;
} else if (library.endsWith('.css')) {
styleCSS += `@import url('${library}');\n`;
} else {
Expand Down
2 changes: 1 addition & 1 deletion go/editor.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -783,7 +783,7 @@ SOFTWARE.`;
let styleCSS = '/* imports */\n';
project.libraries.forEach(library => {
if (library.endsWith('.js')) {
scriptTags += `<script src="${library}" defer></script>\n `;
scriptTags += `<script src="${library}"></script>\n `;
} else if (library.endsWith('.css')) {
styleCSS += `@import url('${library}');\n`;
} else {
Expand Down

0 comments on commit af8f180

Please sign in to comment.