* Work on quote builder / reply

This commit is contained in:
Bryan Ashby 2015-09-13 21:15:55 -06:00
parent 88d725f585
commit 150de3953e
2 changed files with 36 additions and 2 deletions

View file

@ -563,6 +563,15 @@ function FullScreenEditorModule(options) {
);
};
this.displayQuoteBuilder = function() {
//
// Clear body area
//
self.client.term.rawWrite(
ansi.goto(self.header.height, 1) +
ansi.eraseLine(self.body.height));
};
this.observeEditorEvents = function() {
var bodyView = self.viewControllers.body.getView(1);
@ -629,7 +638,8 @@ function FullScreenEditorModule(options) {
});
},
editModeMenuQuote : function(formData, extraArgs) {
self.viewControllers.footerEditorMenu.setFocus(false);
self.displayQuoteBuilder();
},
editModeMenuHelp : function(formData, extraArgs) {
self.viewControllers.footerEditorMenu.setFocus(false);