speaker-calibration 2.2.264 → 2.2.266

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "speaker-calibration",
3
- "version": "2.2.264",
3
+ "version": "2.2.266",
4
4
  "description": "Speaker calibration library for auditory testing",
5
5
  "main": "dist/main.js",
6
6
  "directories": {
@@ -622,7 +622,7 @@ class Speaker extends AudioPeer {
622
622
  // p.style.fontWeight = 'normal';
623
623
  // p.style.paddingTop = '20px';
624
624
  // const timeToCalibrateText = phrases.RC_howLongToCalibrate['en-US'];
625
- // p.innerHTML = timeToCalibrateText.replace('111', this.timeToCalibrate);
625
+ // p.innerHTML = timeToCalibrateText.replace('[[N11]]', this.timeToCalibrate);
626
626
  // instructionDisplay.appendChild(p);
627
627
  }
628
628
 
@@ -630,7 +630,7 @@ class Speaker extends AudioPeer {
630
630
  if (timeToCalibrateDisplay) {
631
631
  const timeToCalibrateText = this.phrases.RC_howLongToCalibrate[this.language];
632
632
  timeToCalibrateDisplay.innerHTML = timeToCalibrateText.replace(
633
- '[[111]]',
633
+ '[[N11]]',
634
634
  this.timeToCalibrate
635
635
  );
636
636
  timeToCalibrateDisplay.style.fontWeight = 'normal';