Skip to content

Commit

Permalink
fluid-projectGH-32: defer javascript loading to fix no container error
Browse files Browse the repository at this point in the history
  • Loading branch information
cindyli committed Dec 20, 2022
1 parent 12c6982 commit ffb695d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/html/adjusters.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
<link rel="stylesheet" type="text/css" href="../lib/infusion/src/framework/preferences/css/SeparatedPanelPrefsEditor.css" />
<link rel="stylesheet" type="text/css" href="../css/adjusters.css" />

<script src="../lib/infusion/dist/infusion-uio.js"></script>
<script src="../js/panels.js"></script>
<script src="../js/schemas.js"></script>
<script src="../js/store.js"></script>
<script src="../js/prefsEditor.js"></script>
<script src="../lib/infusion/dist/infusion-uio.js" defer></script>
<script src="../js/schemas.js" defer></script>
<script src="../js/store.js" defer></script>
<script src="../js/panels.js" defer></script>
<script src="../js/prefsEditor.js" defer></script>
<script src="../js/instantiator.js" defer></script>

<title>Preferences Editor</title>
Expand Down

0 comments on commit ffb695d

Please sign in to comment.