wip to fix jquery-hotkeys
This commit is contained in:
parent
4821705d68
commit
accb4fd2bb
3
.gitignore
vendored
3
.gitignore
vendored
@ -19,6 +19,7 @@ package-lock.json
|
|||||||
yarn-error.log
|
yarn-error.log
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
|
||||||
example/deps/
|
# Common Example Data Directories
|
||||||
sampledata/
|
sampledata/
|
||||||
|
example/deps/
|
||||||
docker/dcm4che/dcm4che-arc
|
docker/dcm4che/dcm4che-arc
|
||||||
|
|||||||
@ -18,6 +18,9 @@ RUN yarn run prepare
|
|||||||
|
|
||||||
WORKDIR /usr/src/app/example
|
WORKDIR /usr/src/app/example
|
||||||
|
|
||||||
|
RUN yarn install
|
||||||
|
RUN yarn run prepare
|
||||||
|
|
||||||
RUN sed -i "s,http://localhost:5000,http://localhost,g" index.html
|
RUN sed -i "s,http://localhost:5000,http://localhost,g" index.html
|
||||||
RUN sed -i 's,"routerBasename": "/","routerBasename": "/demo",g' index.html
|
RUN sed -i 's,"routerBasename": "/","routerBasename": "/demo",g' index.html
|
||||||
|
|
||||||
|
|||||||
@ -103,6 +103,20 @@
|
|||||||
// Try going to:
|
// Try going to:
|
||||||
// http://localhost:5000/viewer/1.3.6.1.4.1.14519.5.2.1.1706.4996.216859690032335293073513900362
|
// http://localhost:5000/viewer/1.3.6.1.4.1.14519.5.2.1.1706.4996.216859690032335293073513900362
|
||||||
props.servers = {
|
props.servers = {
|
||||||
|
"dicomWeb": [
|
||||||
|
{
|
||||||
|
"name": "DCM4CHEE",
|
||||||
|
"wadoUriRoot": "https://server.dcmjs.org/dcm4chee-arc/aets/DCM4CHEE/wado",
|
||||||
|
"qidoRoot": "https://server.dcmjs.org/dcm4chee-arc/aets/DCM4CHEE/rs",
|
||||||
|
"wadoRoot": "https://server.dcmjs.org/dcm4chee-arc/aets/DCM4CHEE/rs",
|
||||||
|
"qidoSupportsIncludeField": true,
|
||||||
|
"imageRendering": "wadors",
|
||||||
|
"thumbnailRendering": "wadors",
|
||||||
|
"requestOptions": {
|
||||||
|
"requestFromBrowser": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
// "dicomWeb": [
|
// "dicomWeb": [
|
||||||
// {
|
// {
|
||||||
// "name": "Orthanc",
|
// "name": "Orthanc",
|
||||||
@ -120,21 +134,21 @@
|
|||||||
// }
|
// }
|
||||||
// }
|
// }
|
||||||
// ]
|
// ]
|
||||||
"dicomWeb": [
|
// "dicomWeb": [
|
||||||
{
|
// {
|
||||||
"name": "DCM4CHEE",
|
// "name": "DCM4CHEE",
|
||||||
"wadoUriRoot": "http://localhost:8080/dcm4chee-arc/aets/DCM4CHEE/wado",
|
// "wadoUriRoot": "http://localhost:8080/dcm4chee-arc/aets/DCM4CHEE/wado",
|
||||||
"qidoRoot": "http://localhost:8080/dcm4chee-arc/aets/DCM4CHEE/rs",
|
// "qidoRoot": "http://localhost:8080/dcm4chee-arc/aets/DCM4CHEE/rs",
|
||||||
"wadoRoot": "http://localhost:8080/dcm4chee-arc/aets/DCM4CHEE/rs",
|
// "wadoRoot": "http://localhost:8080/dcm4chee-arc/aets/DCM4CHEE/rs",
|
||||||
"qidoSupportsIncludeField": true,
|
// "qidoSupportsIncludeField": true,
|
||||||
"imageRendering": "wadors",
|
// "imageRendering": "wadors",
|
||||||
"thumbnailRendering": "wadors",
|
// "thumbnailRendering": "wadors",
|
||||||
"requestOptions": {
|
// "requestOptions": {
|
||||||
"requestFromBrowser": true,
|
// "requestFromBrowser": true,
|
||||||
"auth": "admin:admin"
|
// "auth": "admin:admin"
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
]
|
// ]
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user