Merging from downstream (Ascend)
This commit is contained in:
parent
e088eca37a
commit
574a6d02b0
@ -3,38 +3,37 @@
|
|||||||
<div id="studyContextMenu" class="studyContextMenu noselect"
|
<div id="studyContextMenu" class="studyContextMenu noselect"
|
||||||
oncontextmenu='return false;'
|
oncontextmenu='return false;'
|
||||||
unselectable='on'
|
unselectable='on'
|
||||||
onselectstart='return false;'>
|
onselectstart='return false;'
|
||||||
|
>
|
||||||
<ul>
|
<ul>
|
||||||
<li>
|
<li>
|
||||||
<a id="viewStudies" type="button"
|
<a id="viewStudies" type="button"
|
||||||
title="View Studies">
|
title="View Studies"
|
||||||
View
|
>View</a>
|
||||||
</a>
|
|
||||||
<hr/>
|
<hr/>
|
||||||
|
|
||||||
<a id="launchStudyAssociation" type="button"
|
<a id="launchStudyAssociation" type="button"
|
||||||
data-toggle="modal"
|
data-toggle="modal"
|
||||||
data-target="#associationModal"
|
data-target="#associationModal"
|
||||||
title="Launch Study Association">
|
title="Launch Study Association"
|
||||||
Associate
|
>Associate</a>
|
||||||
</a>
|
|
||||||
<a id="launchRemoveAssociation" type="button"
|
<a id="launchRemoveAssociation" type="button"
|
||||||
data-toggle="modal"
|
data-toggle="modal"
|
||||||
data-target="#confirmRemoveTimepointAssociation"
|
data-target="#confirmRemoveTimepointAssociation"
|
||||||
title="Remove Timepoint Association">
|
title="Remove Timepoint Association"
|
||||||
Remove Association
|
>Remove Association</a>
|
||||||
</a>
|
|
||||||
<hr/>
|
<hr/>
|
||||||
|
|
||||||
<a id="viewSeriesDetails" type="button"
|
<a id="viewSeriesDetails" type="button"
|
||||||
title="View Series Details">
|
title="View Series Details"
|
||||||
View Series Details
|
>View Series Details</a>
|
||||||
</a>
|
|
||||||
<a class="disabled">Anonymize</a>
|
<a class="disabled">Anonymize</a>
|
||||||
<a class="disabled">Send</a>
|
<a class="disabled">Send</a>
|
||||||
<hr/>
|
<hr/>
|
||||||
|
|
||||||
<a id="exportSelectedStudies"
|
<a id="exportSelectedStudies"
|
||||||
title="Export Selected Studies">
|
title="Export Selected Studies"
|
||||||
Export
|
>Export</a>
|
||||||
</a>
|
|
||||||
<a class="disabled">Delete</a>
|
<a class="disabled">Delete</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|||||||
@ -16,7 +16,6 @@
|
|||||||
position: relative
|
position: relative
|
||||||
transition($sidebarTransition)
|
transition($sidebarTransition)
|
||||||
width: 217px
|
width: 217px
|
||||||
|
|
||||||
-moz-background-clip: padding
|
-moz-background-clip: padding
|
||||||
-webkit-background-clip: padding
|
-webkit-background-clip: padding
|
||||||
background-clip: padding-box
|
background-clip: padding-box
|
||||||
|
|||||||
@ -23,7 +23,7 @@
|
|||||||
"verifyEmail": false,
|
"verifyEmail": false,
|
||||||
"ui": {
|
"ui": {
|
||||||
"studyListFunctionsEnabled": true,
|
"studyListFunctionsEnabled": true,
|
||||||
"leftSidebarOpen": true,
|
"leftSidebarOpen": false,
|
||||||
"displaySetNavigationLoopOverSeries": false,
|
"displaySetNavigationLoopOverSeries": false,
|
||||||
"displaySetNavigationMultipleViewports": true
|
"displaySetNavigationMultipleViewports": true
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,20 +0,0 @@
|
|||||||
// This sets up a proxy to work around CORS.
|
|
||||||
// See http://chafey.blogspot.be/2014/09/working-around-cors.html
|
|
||||||
// For more information
|
|
||||||
var http = require('http'),
|
|
||||||
httpProxy = require('http-proxy');
|
|
||||||
|
|
||||||
var proxy = httpProxy.createProxyServer({
|
|
||||||
target: 'http://172.31.7.135:8042',
|
|
||||||
auth: 'orthanc:orthanc'
|
|
||||||
}).listen(8043);
|
|
||||||
|
|
||||||
proxy.on('proxyRes', function(proxyReq, req, res, options) {
|
|
||||||
// add the CORS header to the response
|
|
||||||
res.setHeader('Access-Control-Allow-Origin', '*');
|
|
||||||
});
|
|
||||||
|
|
||||||
proxy.on('error', function(e) {
|
|
||||||
// suppress errors
|
|
||||||
console.log(e);
|
|
||||||
});
|
|
||||||
Loading…
Reference in New Issue
Block a user