* Some Notes

This commit is contained in:
Bryan Ashby 2015-09-04 16:58:54 -06:00
parent cc68106473
commit b911db75ca
1 changed files with 10 additions and 0 deletions

View File

@ -513,6 +513,7 @@ function FullScreenEditorModule(options) {
this.menuMethods = {
// :TODO: rename to editModeHeaderSubmit
headerSubmit : function(formData, extraArgs) {
self.switchToBody();
},
@ -555,6 +556,15 @@ function FullScreenEditorModule(options) {
editModeMenuHelp : function(formData, extraArgs) {
self.viewControllers.footerEditorMenu.setFocus(false);
self.displayHelp();
},
///////////////////////////////////////////////////////////////////////
// View Mode
///////////////////////////////////////////////////////////////////////
viewModeEscPressed : function(formData, extraArgs) {
//
// MLTEV won't get key events -- we need to handle them all here?
// ...up/down, page up/page down... both should go by pages
// ...Next/Prev/Etc. here
}
};