diff --git a/src/js/test/test-ui.js b/src/js/test/test-ui.js index 16324d475..159b3c371 100644 --- a/src/js/test/test-ui.js +++ b/src/js/test/test-ui.js @@ -80,6 +80,24 @@ export function updateActiveElement(backspace) { } catch (e) {} } +function getWordHTML(word) { + let newlineafter = false; + let retval = `
`; + for (let c = 0; c < word.length; c++) { + if (word.charAt(c) === "\t") { + retval += ``; + } else if (word.charAt(c) === "\n") { + newlineafter = true; + retval += ``; + } else { + retval += "" + word.charAt(c) + ""; + } + } + retval += "
"; + if (newlineafter) retval += "
"; + return retval; +} + export function showWords() { $("#words").empty(); @@ -145,24 +163,6 @@ export function showWords() { Caret.updatePosition(); } -function getWordHTML(word) { - let newlineafter = false; - let retval = `
`; - for (let c = 0; c < word.length; c++) { - if (word.charAt(c) === "\t") { - retval += ``; - } else if (word.charAt(c) === "\n") { - newlineafter = true; - retval += ``; - } else { - retval += "" + word.charAt(c) + ""; - } - } - retval += "
"; - if (newlineafter) retval += "
"; - return retval; -} - export function addWord(word) { $("#words").append(getWordHTML(word)); }