fix #248: crossorigin attribute is needed when including with type="module"

For more info, see:
 * https://html.spec.whatwg.org/multipage/urls-and-fetching.html#cors-settings-attributes
 * https://jakearchibald.com/2017/es-modules-in-browsers
This commit is contained in:
Julien Nicoulaud
2018-12-01 23:15:36 +01:00
parent ee0b0c3dfe
commit cb00d42546
2 changed files with 4 additions and 4 deletions

View File

@@ -129,6 +129,6 @@
<script src="/libraries/knockout.min.js"></script>
<script src="/javascripts/setup.js" type="module"></script>
<script src="/javascripts/setup.js" crossorigin type="module"></script>
</body>
</html>
</html>