Merge pull request #9 from eslavich/eslavich-crossorigin-use-credentials

Send credentials when making requests for imported modules in noVNC
This commit is contained in:
Yuvi Panda 2019-11-12 09:52:31 -08:00 committed by GitHub
commit 81e224cfd8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@
</script>
<!-- actual script modules -->
<script type="module" crossorigin="anonymous">
<script type="module" crossorigin="use-credentials">
// RFB holds the API to connect and communicate with a VNC server
import RFB from './core/rfb.js';