kbmulti: remove displayText() false - use undefined
parent
78995305cb
commit
192adef634
|
|
@ -89,7 +89,7 @@ exports.input = function(options) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function newCharacter(ch) {
|
function newCharacter(ch) {
|
||||||
displayText();
|
displayText(false);
|
||||||
if (ch && textIndex < text.length) textIndex ++;
|
if (ch && textIndex < text.length) textIndex ++;
|
||||||
charCurrent = ch;
|
charCurrent = ch;
|
||||||
charIndex = 0;
|
charIndex = 0;
|
||||||
|
|
@ -121,7 +121,7 @@ exports.input = function(options) {
|
||||||
newCharacter();
|
newCharacter();
|
||||||
retireCurrent();
|
retireCurrent();
|
||||||
}, settings.charTimeout);
|
}, settings.charTimeout);
|
||||||
displayText(charTimeout);
|
displayText(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
function retireCurrent(why) {
|
function retireCurrent(why) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue