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({
|
||||
'measurement': function() {
|
||||
// All Targets shall be listed first followed by Non-Targets
|
||||
return Measurements.find({}, {
|
||||
sort: {
|
||||
isTarget: -1,
|
||||
lesionNumberAbsolute: 1
|
||||
}
|
||||
});
|
||||
|
||||
@ -12,8 +12,8 @@ Meteor.startup(function() {
|
||||
stackScroll: "S",
|
||||
pan: "P",
|
||||
magnify: "M",
|
||||
scrollDown: "DOWN",
|
||||
scrollUp: "UP",
|
||||
scrollDown: ["DOWN", "PAGEDOWN"],
|
||||
scrollUp: ["UP", "PAGEUP"],
|
||||
nextPanel: "RIGHT",
|
||||
previousPanel: "LEFT",
|
||||
invert: "I",
|
||||
|
||||
Loading…
Reference in New Issue
Block a user