remove code that may be infringing on Tamabo IP
This commit is contained in:
parent
2e52d9e3c1
commit
9d83c9d534
@ -44,6 +44,7 @@ function setLesionNumberCallback(measurementData, eventData, doneCallback) {
|
|||||||
// If there already exists a lesion with this specific lesion number,
|
// If there already exists a lesion with this specific lesion number,
|
||||||
// related to the chosen location.
|
// related to the chosen location.
|
||||||
function getLesionLocationCallback(measurementData, eventData) {
|
function getLesionLocationCallback(measurementData, eventData) {
|
||||||
|
return;
|
||||||
Template.lesionLocationDialog.measurementData = measurementData;
|
Template.lesionLocationDialog.measurementData = measurementData;
|
||||||
|
|
||||||
// Reset the doneCallback saved in the template so we don't call the change event's done callback
|
// Reset the doneCallback saved in the template so we don't call the change event's done callback
|
||||||
@ -110,6 +111,7 @@ function getLesionLocationCallback(measurementData, eventData) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
changeLesionLocationCallback = function(measurementData, eventData, doneCallback) {
|
changeLesionLocationCallback = function(measurementData, eventData, doneCallback) {
|
||||||
|
return;
|
||||||
Template.lesionLocationDialog.measurementData = measurementData;
|
Template.lesionLocationDialog.measurementData = measurementData;
|
||||||
Template.lesionLocationDialog.doneCallback = doneCallback;
|
Template.lesionLocationDialog.doneCallback = doneCallback;
|
||||||
|
|
||||||
|
|||||||
@ -18,12 +18,12 @@ Template.lesionTable.helpers({
|
|||||||
});
|
});
|
||||||
|
|
||||||
Template.lesionTable.events({
|
Template.lesionTable.events({
|
||||||
'click table#tblLesion tbody tr': function(e, template) {
|
// 'click table#tblLesion tbody tr': function(e, template) {
|
||||||
// Retrieve the lesion id from the DOM data for this row
|
// Retrieve the lesion id from the DOM data for this row
|
||||||
var measurementId = $(e.currentTarget).data('measurementid');
|
// var measurementId = $(e.currentTarget).data('measurementid');
|
||||||
|
|
||||||
activateLesion(measurementId, template.data);
|
// activateLesion(measurementId, template.data);
|
||||||
},
|
//},
|
||||||
'mousedown div#dragbar': function(e, template) {
|
'mousedown div#dragbar': function(e, template) {
|
||||||
var pY = e.pageY;
|
var pY = e.pageY;
|
||||||
var draggableParent = $(e.currentTarget).parent();
|
var draggableParent = $(e.currentTarget).parent();
|
||||||
|
|||||||
@ -1,11 +1,11 @@
|
|||||||
<template name="lesionTableRow">
|
<template name="lesionTableRow">
|
||||||
<tr id="{{lesionNumber}}" class="lesionTableRow" data-measurementid="{{_id}}">
|
<tr id="{{lesionNumber}}" class="lesionTableRow" data-measurementid="{{_id}}">
|
||||||
<td class='lesionNumber'>{{lesionNumberAbsolute}}</td>
|
<td class='lesionNumber'>{{lesionNumberAbsolute}}</td>
|
||||||
<td class='location' tabindex="0">{{location}}</td>
|
<!--<td class='location' tabindex="0">{{location}}</td>-->
|
||||||
<td class='target'>{{#if isTarget}} Y {{else}} N {{/if}}</td>
|
<td class='target'>{{#if isTarget}} Y {{else}} N {{/if}}</td>
|
||||||
<!--Each time point as a column-->
|
<!--Each time point as a column-->
|
||||||
{{# each timepoints }}
|
{{# each timepoints }}
|
||||||
{{> lesionTableTimepointCell}}
|
{{> lesionTableTimepointCell}}
|
||||||
{{/ each }}
|
{{/ each }}
|
||||||
</tr>
|
</tr>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user