diff options
| author | Alex Yatskov <alex@foosoft.net> | 2017-04-08 12:25:18 -0700 | 
|---|---|---|
| committer | Alex Yatskov <alex@foosoft.net> | 2017-04-08 12:25:18 -0700 | 
| commit | 1ba458ea821b9a39a2cf5eb388f81e4db4763207 (patch) | |
| tree | 463b010ee19ba24558841a1d840f9011b4f74c6f /ext/mixed/js/util.js | |
| parent | c4b1a4a5b4811d7aaa70b3b83f740c9e3d2b86be (diff) | |
fixing cloze bug
Diffstat (limited to 'ext/mixed/js/util.js')
| -rw-r--r-- | ext/mixed/js/util.js | 15 | 
1 files changed, 10 insertions, 5 deletions
| diff --git a/ext/mixed/js/util.js b/ext/mixed/js/util.js index eae54f49..62838674 100644 --- a/ext/mixed/js/util.js +++ b/ext/mixed/js/util.js @@ -22,12 +22,17 @@   */  function clozeBuild(sentence, source) { -    return { -        sentence: sentence.text.trim(), -        prefix: sentence.text.substring(0, sentence.offset).trim(), -        body: source.trim(), -        suffix: sentence.text.substring(sentence.offset + source.length).trim() +    const result = { +        sentence: sentence.text.trim()      }; + +    if (source) { +        result.prefix = sentence.text.substring(0, sentence.offset).trim(); +        result.body = source.trim(); +        result.suffix = sentence.text.substring(sentence.offset + source.length).trim(); +    } + +    return result;  } |