aboutsummaryrefslogtreecommitdiff
path: root/ext/mixed/js/display.js
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2019-12-27 18:15:16 -0500
committertoasted-nutbread <toasted-nutbread@users.noreply.github.com>2020-01-16 22:39:26 -0500
commit97f7df33027e8c8baced23da02b74a5fbd0a14cf (patch)
tree061c7acdb7ee4a10a1f39b164b87864af2d1f706 /ext/mixed/js/display.js
parent7a6f85879e51af6b5ae63d748b99d720856b8e1d (diff)
Don't use document fragment
Diffstat (limited to 'ext/mixed/js/display.js')
-rw-r--r--ext/mixed/js/display.js36
1 files changed, 20 insertions, 16 deletions
diff --git a/ext/mixed/js/display.js b/ext/mixed/js/display.js
index 5238661b..efe33ee6 100644
--- a/ext/mixed/js/display.js
+++ b/ext/mixed/js/display.js
@@ -372,16 +372,18 @@ class Display {
this.updateNavigation(this.context.previous, this.context.next);
this.setNoContentVisible(definitions.length === 0);
- const fragment = document.createDocumentFragment();
- for (const definition of definitions) {
- fragment.appendChild(this.displayGenerator.createTermEntry(definition));
- }
+ const container = this.container;
+ container.textContent = '';
- await Promise.resolve(); // Delay to help avoid forced reflow warnings in Chrome
- if (this.setContentToken !== token) { return; }
+ for (let i = 0, ii = definitions.length; i < ii; ++i) {
+ if (i > 0) {
+ await promiseTimeout(1);
+ if (this.setContentToken !== token) { return; }
+ }
- this.container.textContent = '';
- this.container.appendChild(fragment);
+ const entry = this.displayGenerator.createTermEntry(definitions[i]);
+ container.appendChild(entry);
+ }
const {index, scroll, disableScroll} = context;
if (!disableScroll) {
@@ -429,16 +431,18 @@ class Display {
this.updateNavigation(this.context.previous, this.context.next);
this.setNoContentVisible(definitions.length === 0);
- const fragment = document.createDocumentFragment();
- for (const definition of definitions) {
- fragment.appendChild(this.displayGenerator.createKanjiEntry(definition));
- }
+ const container = this.container;
+ container.textContent = '';
- await Promise.resolve(); // Delay to help avoid forced reflow warnings in Chrome
- if (this.setContentToken !== token) { return; }
+ for (let i = 0, ii = definitions.length; i < ii; ++i) {
+ if (i > 0) {
+ await promiseTimeout(0);
+ if (this.setContentToken !== token) { return; }
+ }
- this.container.textContent = '';
- this.container.appendChild(fragment);
+ const entry = this.displayGenerator.createKanjiEntry(definitions[i]);
+ container.appendChild(entry);
+ }
const {index, scroll} = context;
this.entryScrollIntoView(index || 0, scroll);