don't notify typing for commands
This commit is contained in:
parent
7f28917c29
commit
4479e7fc2b
|
@ -212,8 +212,9 @@ ui.logEntry(`Rejoining Channels....`);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
ui.events.on('typing', () => {
|
ui.events.on('typing', (currentText) => {
|
||||||
// TODO: use async.cargo instead and/or a to avoid unnecessary requests
|
// TODO: use async.cargo instead and/or a to avoid unnecessary requests
|
||||||
|
if (currentText[0] === '/') return;
|
||||||
const channel = channels.getCurrentChannel();
|
const channel = channels.getCurrentChannel();
|
||||||
if(!channel.pubKey){
|
if(!channel.pubKey){
|
||||||
// TODO: the json message is being displayed in the UI
|
// TODO: the json message is being displayed in the UI
|
||||||
|
|
|
@ -243,7 +243,7 @@ class UI {
|
||||||
});
|
});
|
||||||
|
|
||||||
this.input.key('abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'.split(''), function () {
|
this.input.key('abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'.split(''), function () {
|
||||||
self.events.emit("typing");
|
self.events.emit("typing", self.input.value);
|
||||||
});
|
});
|
||||||
|
|
||||||
this.input.on('submit', this.submitCmd.bind(this));
|
this.input.on('submit', this.submitCmd.bind(this));
|
||||||
|
|
Loading…
Reference in New Issue