X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/77f6393c7675e2db18438c9f7c4075552ba278b6..9b8d7e610cef31f15f12c1058dfd45efffac5fb0:/word/memory.js diff --git a/word/memory.js b/word/memory.js index ac1e829..dfbb8a6 100644 --- a/word/memory.js +++ b/word/memory.js @@ -62,7 +62,7 @@ class WordMemory extends WordQuiz { if (this.words) { const aspect = this.form.clientWidth / window.innerHeight; //TODO image ratio - let count = 35; + let count = parseInt(this.preset.n) || 35; let cols = Math.round(Math.sqrt(count) * aspect**.5); count = cols * Math.ceil(count / cols); this.form.style['grid-template-columns'] = `repeat(${cols}, 1fr)`;