Add PageUp and PageDown to hotkeys, Target-first sorting for lesion table

This commit is contained in:
Erik Ziegler 2016-01-09 23:25:35 +01:00
parent 96ddd36151
commit 41baf1c737
2 changed files with 4 additions and 2 deletions

View File

@ -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
}
});

View File

@ -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",