.
This commit is contained in:
@@ -643,6 +643,12 @@ input {
|
|||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.view-question-link-longs
|
||||||
|
color: blue;
|
||||||
|
cursor: pointer;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
.date {
|
.date {
|
||||||
font-size: smaller;
|
font-size: smaller;
|
||||||
opacity: 50%;
|
opacity: 50%;
|
||||||
@@ -720,3 +726,9 @@ input {
|
|||||||
padding-right: 20px;
|
padding-right: 20px;
|
||||||
flex: 1
|
flex: 1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.image-link {
|
||||||
|
color: purple;
|
||||||
|
text-decoration: underline;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
@@ -85,7 +85,8 @@
|
|||||||
$("#history").empty().append(data.title);
|
$("#history").empty().append(data.title);
|
||||||
$("#series").empty();
|
$("#series").empty();
|
||||||
data.image_titles.forEach((element, index) => {
|
data.image_titles.forEach((element, index) => {
|
||||||
$("#series").append($(`<span>${index+1}: ${element}</span>`).click(() => {
|
$("#series").append($(`<span class="image-link" title="click to view">${index+1}: ${element}</span> `).click(() => {
|
||||||
|
$("#single-dicom-viewer").empty();
|
||||||
let event = new CustomEvent('loadDicomViewerUrls', {
|
let event = new CustomEvent('loadDicomViewerUrls', {
|
||||||
"detail": {
|
"detail": {
|
||||||
"images": data.images[index],
|
"images": data.images[index],
|
||||||
|
|||||||
@@ -643,6 +643,12 @@ input {
|
|||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.view-question-link-longs
|
||||||
|
color: blue;
|
||||||
|
cursor: pointer;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
.date {
|
.date {
|
||||||
font-size: smaller;
|
font-size: smaller;
|
||||||
opacity: 50%;
|
opacity: 50%;
|
||||||
@@ -720,3 +726,9 @@ input {
|
|||||||
padding-right: 20px;
|
padding-right: 20px;
|
||||||
flex: 1
|
flex: 1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.image-link {
|
||||||
|
color: purple;
|
||||||
|
text-decoration: underline;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user