Koddenbrock commited on
Commit
2f90f65
1 Parent(s): 5b54cf8

update img-count display to use innerHTML for improved formatting

Browse files
Files changed (1) hide show
  1. public/game.js +2 -2
public/game.js CHANGED
@@ -79,8 +79,8 @@ async function init() {
79
  return;
80
  }
81
 
82
- $('img-count').textContent =
83
- `${MAX_ROUNDS} rounds per session (${real.length} real 路 ${fake.length} fake 路 ${real.length * fake.length} possible pairs)`;
84
  $('btn-start').textContent = 'Start Challenge';
85
  $('btn-start').disabled = false;
86
  } catch (err) {
 
79
  return;
80
  }
81
 
82
+ $('img-count').innerHTML =
83
+ `${MAX_ROUNDS} rounds per session<br>(${real.length} real 路 ${fake.length} fake 路 ${real.length * fake.length} possible pairs)`;
84
  $('btn-start').textContent = 'Start Challenge';
85
  $('btn-start').disabled = false;
86
  } catch (err) {