* modified * new files in existing extensions/libraries/modes * fixed bugs and tests * Clean up * fix: viewport display fixed * Fixed configs for deployment * Removed unnecessary files and functions * Fixed default HP module * Added white labelling * Fixed hash routing * Removed unnecessary routers Co-authored-by: Alireza Sedghi <ar.sedghi@gmail.com>
24 lines
566 B
JavaScript
24 lines
566 B
JavaScript
window.config = {
|
|
routerBasename: '/',
|
|
showStudyList: true,
|
|
extensions: [],
|
|
modes: [],
|
|
dataSources: [
|
|
{
|
|
friendlyName: 'Orthanc Server',
|
|
namespace: 'org.ohif.default.dataSourcesModule.dicomweb',
|
|
sourceName: 'dicomweb',
|
|
configuration: {
|
|
name: 'Orthanc',
|
|
wadoUriRoot: '/wado',
|
|
qidoRoot: '/dicom-web',
|
|
wadoRoot: '/dicom-web',
|
|
qidoSupportsIncludeField: false,
|
|
imageRendering: 'wadors',
|
|
thumbnailRendering: 'wadors',
|
|
},
|
|
},
|
|
],
|
|
defaultDataSourceName: 'dicomweb',
|
|
};
|