Skip to content

Commit

Permalink
Defering requireJS just in case
Browse files Browse the repository at this point in the history
  • Loading branch information
MeoMix committed Mar 28, 2015
1 parent 4324c0e commit a0a3072
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/background.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
<title>
Streamus
</title>

<!--Load RequireJS and then go to js/background/main to start-->
<script data-main='js/background/main' src='js/thirdParty/require.js'></script>
</head>
<body>
<div id='backgroundAreaRegion'></div>

<!--Load RequireJS and then go to js/background/main to start-->
<script data-main='js/background/main' src='js/thirdParty/require.js' defer></script>
</body>
</html>
6 changes: 3 additions & 3 deletions src/foreground.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
</title>

<link href='css/foreground.css' rel='stylesheet'>

<!--Load RequireJS and then go to js/foreground/main to start-->
<script data-main='js/foreground/main' src='js/thirdParty/require.js'></script>
</head>
<body>
<div id='foregroundArea' class='flexColumn u-fullHeight'></div>

<!--Load RequireJS and then go to js/foreground/main to start-->
<script data-main='js/foreground/main' src='js/thirdParty/require.js' defer></script>
</body>
</html>

0 comments on commit a0a3072

Please sign in to comment.