LT-91: Missing "selected study" emphasis in lesion table column header (work-in-progress)

This commit is contained in:
Evren Ozkan 2015-12-30 22:31:17 -05:00
parent 91bd8cab47
commit 75269e43f1

View File

@ -69,6 +69,12 @@ Template.lesionTable.onRendered(function() {
// Put a visual indicator (<) in timepoint header in lesion table for active timepoints
// timepointLoaded property is used to put indicator for loaded timepoints in viewport
self.autorun(function() {
var ViewerData = Session.get("ViewerData");
var contentId = Session.get("activeContentId");
if (contentId) {
var viewerData = ViewerData[contentId];
if (viewerData) {
if (viewerData.loadedSeriesData) {
// Get study dates of imageViewerViewport elements
var loadedStudyDates = {
patientId: "",
@ -112,5 +118,9 @@ Template.lesionTable.onRendered(function() {
});
});
}
}
}
}
});
});