Skip to content

Commit

Permalink
Merge pull request #87 from neos/bugfix/fix-script-tags
Browse files Browse the repository at this point in the history
BUGFIX: Fix script tags in document head
  • Loading branch information
bwaidelich authored Nov 25, 2020
2 parents e30ca80 + b9efec7 commit 054e141
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Resources/Private/Fusion/Document/Fragment/JavaScript.fusion
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
*/
prototype(Neos.Demo:Document.Fragment.JavaScripts) < prototype(Neos.Fusion:Component) {
renderer = afx`
<script src={StaticResource.uri('Neos.Twitter.Bootstrap', 'Public/Libraries/jQuery/jquery-1.10.1.min.js')} />
<script src={StaticResource.uri('Neos.Twitter.Bootstrap', 'Public/3/js/bootstrap.min.js')} />
<script src={StaticResource.uri('Neos.Demo', 'Public/Scripts/Main.js')} />
<script defer src={StaticResource.uri('Neos.Twitter.Bootstrap', 'Public/Libraries/jQuery/jquery-1.10.1.min.js')}></script>
<script defer src={StaticResource.uri('Neos.Twitter.Bootstrap', 'Public/3/js/bootstrap.min.js')}></script>
<script defer src={StaticResource.uri('Neos.Demo', 'Public/Scripts/Main.js')}></script>
`
}

0 comments on commit 054e141

Please sign in to comment.