mirror of
https://github.com/NuSkooler/enigma-bbs.git
synced 2025-07-27 21:16:09 +02:00
Additional fixes from code review comments
This commit is contained in:
parent
049c3a870a
commit
d4098ed114
2 changed files with 3 additions and 4 deletions
|
@ -792,7 +792,7 @@ exports.FullScreenEditorModule = exports.getModule = class FullScreenEditorModul
|
|||
},
|
||||
function prepareViewStates(callback) {
|
||||
let from = self.viewControllers.header.getView(MciViewIds.header.from);
|
||||
if (from !== undefined) {
|
||||
if (from) {
|
||||
from.acceptsFocus = false;
|
||||
}
|
||||
|
||||
|
@ -918,7 +918,7 @@ exports.FullScreenEditorModule = exports.getModule = class FullScreenEditorModul
|
|||
|
||||
initHeaderViewMode() {
|
||||
// Only set header text for from view if it is on the form
|
||||
if (self.viewControllers.header.getView(MciViewIds.header.from) !== undefined) {
|
||||
if (this.viewControllers.header.getView(MciViewIds.header.from) !== undefined) {
|
||||
this.setHeaderText(MciViewIds.header.from, this.message.fromUserName);
|
||||
}
|
||||
this.setHeaderText(MciViewIds.header.to, this.message.toUserName);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue