mirror of
https://github.com/NuSkooler/enigma-bbs.git
synced 2025-07-24 03:30:40 +02:00
* Work on quote builder / reply
This commit is contained in:
parent
88d725f585
commit
150de3953e
2 changed files with 36 additions and 2 deletions
12
core/fse.js
12
core/fse.js
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue