122 lines
2.2 KiB
JavaScript
122 lines
2.2 KiB
JavaScript
LesionLocations = new Meteor.Collection(null);
|
|
|
|
LesionLocations.insert({
|
|
id: 'liverLeft',
|
|
group: 'liver',
|
|
location: 'Liver Left',
|
|
hasDescription: false,
|
|
description: '',
|
|
selected: false,
|
|
isNodal: false
|
|
});
|
|
|
|
LesionLocations.insert({
|
|
id: 'liverRight',
|
|
group: 'liver',
|
|
location: 'Liver Right',
|
|
hasDescription: false,
|
|
description: '',
|
|
selected: false,
|
|
isNodal: false
|
|
});
|
|
|
|
LesionLocations.insert({
|
|
id: 'liverCaudate',
|
|
group: 'liver',
|
|
location: 'Liver Caudate',
|
|
hasDescription: false,
|
|
description: '',
|
|
selected: false,
|
|
isNodal: false
|
|
});
|
|
|
|
LesionLocations.insert({
|
|
id: 'lungLLL',
|
|
group: 'lung',
|
|
location: 'Lung LLL',
|
|
hasDescription: false,
|
|
description: '',
|
|
selected: false,
|
|
isNodal: false
|
|
});
|
|
|
|
LesionLocations.insert({
|
|
id: 'lungLUL',
|
|
group: 'lung',
|
|
location: 'Lung LUL',
|
|
hasDescription: false,
|
|
description: '',
|
|
selected: false,
|
|
isNodal: false
|
|
});
|
|
|
|
LesionLocations.insert({
|
|
id: 'lungRLL',
|
|
group: 'lung',
|
|
location: 'Lung RLL',
|
|
hasDescription: false,
|
|
description: '',
|
|
selected: false,
|
|
isNodal: false
|
|
});
|
|
|
|
LesionLocations.insert({
|
|
id: 'lungRML',
|
|
group: 'lung',
|
|
location: 'Lung RML',
|
|
hasDescription: false,
|
|
description: '',
|
|
selected: false,
|
|
isNodal: false
|
|
});
|
|
|
|
LesionLocations.insert({
|
|
id: 'lungRUL',
|
|
group: 'lung',
|
|
location: 'Lung RUL',
|
|
hasDescription: false,
|
|
description: '',
|
|
selected: false,
|
|
isNodal: false
|
|
});
|
|
|
|
LesionLocations.insert({
|
|
id: 'pleuraLeft',
|
|
group: 'pleura',
|
|
location: 'Pleura Left',
|
|
hasDescription: false,
|
|
description: '',
|
|
selected: false,
|
|
isNodal: false
|
|
});
|
|
|
|
LesionLocations.insert({
|
|
id: 'pleuraRight',
|
|
group: 'pleura',
|
|
location: 'Pleura Right',
|
|
hasDescription: false,
|
|
description: '',
|
|
selected: false,
|
|
isNodal: false
|
|
});
|
|
|
|
LesionLocations.insert({
|
|
id: 'kidneyLeft',
|
|
group: 'kidney',
|
|
location: 'Kidney Left',
|
|
hasDescription: false,
|
|
description: '',
|
|
selected: false,
|
|
isNodal: false
|
|
});
|
|
|
|
LesionLocations.insert({
|
|
id: 'kidneyRight',
|
|
group: 'kidney',
|
|
location: 'Kidney Right',
|
|
hasDescription: false,
|
|
description: '',
|
|
selected: false,
|
|
isNodal: false
|
|
});
|