Add PageUp and PageDown to hotkeys, Target-first sorting for lesion table
This commit is contained in:
parent
96ddd36151
commit
41baf1c737
@ -1,7 +1,9 @@
|
|||||||
Template.lesionTable.helpers({
|
Template.lesionTable.helpers({
|
||||||
'measurement': function() {
|
'measurement': function() {
|
||||||
|
// All Targets shall be listed first followed by Non-Targets
|
||||||
return Measurements.find({}, {
|
return Measurements.find({}, {
|
||||||
sort: {
|
sort: {
|
||||||
|
isTarget: -1,
|
||||||
lesionNumberAbsolute: 1
|
lesionNumberAbsolute: 1
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|||||||
@ -12,8 +12,8 @@ Meteor.startup(function() {
|
|||||||
stackScroll: "S",
|
stackScroll: "S",
|
||||||
pan: "P",
|
pan: "P",
|
||||||
magnify: "M",
|
magnify: "M",
|
||||||
scrollDown: "DOWN",
|
scrollDown: ["DOWN", "PAGEDOWN"],
|
||||||
scrollUp: "UP",
|
scrollUp: ["UP", "PAGEUP"],
|
||||||
nextPanel: "RIGHT",
|
nextPanel: "RIGHT",
|
||||||
previousPanel: "LEFT",
|
previousPanel: "LEFT",
|
||||||
invert: "I",
|
invert: "I",
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user