Skip to content

Commit

Permalink
bug fix for js libraries/frameworks
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelsboost committed Apr 26, 2024
1 parent db0c14d commit d34bdf5
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 20 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 @@ -157129,7 +157129,7 @@ ${"-".repeat(err.pos)}^`;
let cssTags = '';
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')) {
cssTags += `<link rel="stylesheet" href="${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 @@ -642,7 +642,7 @@ const app = {
let cssTags = '';
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')) {
cssTags += `<link rel="stylesheet" href="${library}">\n`;
} else {
Expand Down
18 changes: 0 additions & 18 deletions go/sw-old.js

This file was deleted.

0 comments on commit d34bdf5

Please sign in to comment.