* Fix bug in VerticalMenuView when pressing up with low number of items

* Minor work on message list
This commit is contained in:
Bryan Ashby
2015-08-30 21:42:24 -06:00
parent 87dcb1bdda
commit e852695354
3 changed files with 40 additions and 8 deletions

View File

@@ -86,7 +86,8 @@
// :TODO: may want { "prompt" : { "name" : "blah", "action" : ... }}
"prompt" : "userCredentials",
"fallback" : "matrix",
"next" : "fullLoginSequenceLoginArt",
//"next" : "fullLoginSequenceLoginArt",
"next" : "messageArea",
"action" : "@systemMethod:login",
// :TODO: support alt submit method for prompts
@@ -329,9 +330,26 @@
"VM" : {
"mci" : {
"VM1" : {
"height" : 10
"height" : 10,
"focus" : true,
"submit" : true,
"argName" : "message"
}
}
},
"submit" : {
"*": [
{
"value" : { "message" : null },
"action" : "@method:selectMessage"
}
]
},
"actionKeys" : [
{
"keys" : [ "escape" ],
"action" : "@menu:messageArea"
}
]
}
}
}