Skip to content

Commit

Permalink
Bug: fix vtk example to pull from unpkg
Browse files Browse the repository at this point in the history
  • Loading branch information
pieper committed Oct 2, 2018
1 parent 177fecc commit 426e790
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions examples/vtkDisplay/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,9 @@ <h2>Volume:</h2>
<script src="../helpers/DICOMZero.js"></script>


<script type="text/javascript" src="https://unpkg.com/dicomweb-client"></script>

<!-- include local versions (for dev) or unpkg (for static hosting) -->
<script src="../../build/dcmjs.js"></script>
<script>window.dcmjs || document.write('<script src="https://unpkg.com/dcmjs">\x3C/script>')</script>

<script src="http://127.0.0.1:8082/vtk.js"></script>
<script>window.dcmjs || document.write('<script src="https://unpkg.com/vtk.js">\x3C/script>')</script>
<script src="https://unpkg.com/dicomweb-client"></script>
<script src="https://unpkg.com/dcmjs"></script>
<script src="https://unpkg.com/vtk.js"></script>

<script>
let volumeViewer;
Expand Down

0 comments on commit 426e790

Please sign in to comment.