-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Completed the initial Worklist display on OHIF v2 against the lambda …
…function.
- Loading branch information
1 parent
8de5feb
commit 1eb9c5e
Showing
4 changed files
with
59 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="utf-8" /> | ||
|
||
<meta name="description" content="Open Health Imaging Foundation DICOM Viewer" /> | ||
<meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1,maximum-scale=1,user-scalable=no" /> | ||
<meta name="theme-color" content="#000000" /> | ||
<meta http-equiv="cleartype" content="on" /> | ||
<meta name="MobileOptimized" content="320" /> | ||
<meta name="HandheldFriendly" content="True" /> | ||
<meta name="apple-mobile-web-app-capable" content="yes" /> | ||
|
||
<!-- WEB FONTS --> | ||
<link href="https://fonts.googleapis.com/css?family=Sanchez" rel="stylesheet" /> | ||
|
||
<title>OHIF Standalone Viewer</title> | ||
</head> | ||
|
||
<body> | ||
<noscript> You need to enable JavaScript to run this app. </noscript> | ||
|
||
<div id="root"></div> | ||
|
||
<script src="https://unpkg.com/@ohif/[email protected]/dist/index.umd.js" crossorigin></script> | ||
<script> | ||
var containerId = "root"; | ||
var componentRenderedOrUpdatedCallback = function(){ | ||
console.log('OHIF Viewer rendered/updated'); | ||
} | ||
window.OHIFViewer.installViewer( | ||
{ | ||
// routerBasename: '/', | ||
servers: { | ||
dicomWeb: [ | ||
{ | ||
name: 'DCM4CHEE', | ||
wadoUriRoot: 'https://server.dcmjs.org/dcm4chee-arc/aets/DCM4CHEE/wado', | ||
qidoRoot: 'https://1zj5lwaaqi.execute-api.us-east-2.amazonaws.com/dev/dcmjs', | ||
wadoRoot: 'https://1zj5lwaaqi.execute-api.us-east-2.amazonaws.com/dev/dcmjs', | ||
qidoSupportsIncludeField: true, | ||
imageRendering: 'wadoUri', | ||
thumbnailRendering: 'wadoUri', | ||
}, | ||
], | ||
}, | ||
}, containerId, componentRenderedOrUpdatedCallback); | ||
</script> | ||
</body> | ||
|
||
</html> |
This file was deleted.
Oops, something went wrong.