diff --git a/Packages/lesiontracker/client/components/lesionTrackerWorklistContextMenu/lesionTrackerWorklistContextMenu.html b/Packages/lesiontracker/client/components/lesionTrackerWorklistContextMenu/lesionTrackerWorklistContextMenu.html index fe8671094..8ee6c76d9 100644 --- a/Packages/lesiontracker/client/components/lesionTrackerWorklistContextMenu/lesionTrackerWorklistContextMenu.html +++ b/Packages/lesiontracker/client/components/lesionTrackerWorklistContextMenu/lesionTrackerWorklistContextMenu.html @@ -1,43 +1,42 @@ diff --git a/Packages/viewerbase/client/components/studyBrowser/imageThumbnail/imageThumbnail.styl b/Packages/viewerbase/client/components/studyBrowser/imageThumbnail/imageThumbnail.styl index 34d7cfe34..8db4aad5d 100644 --- a/Packages/viewerbase/client/components/studyBrowser/imageThumbnail/imageThumbnail.styl +++ b/Packages/viewerbase/client/components/studyBrowser/imageThumbnail/imageThumbnail.styl @@ -16,7 +16,6 @@ position: relative transition($sidebarTransition) width: 217px - -moz-background-clip: padding -webkit-background-clip: padding background-clip: padding-box diff --git a/config/orthancDICOMWeb.json b/config/orthancDICOMWeb.json index a27157e41..bae674c7b 100644 --- a/config/orthancDICOMWeb.json +++ b/config/orthancDICOMWeb.json @@ -23,7 +23,7 @@ "verifyEmail": false, "ui": { "studyListFunctionsEnabled": true, - "leftSidebarOpen": true, + "leftSidebarOpen": false, "displaySetNavigationLoopOverSeries": false, "displaySetNavigationMultipleViewports": true } diff --git a/etc/AscendAWS_CORSProxy.js b/etc/AscendAWS_CORSProxy.js deleted file mode 100644 index 39db2762f..000000000 --- a/etc/AscendAWS_CORSProxy.js +++ /dev/null @@ -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); -});