We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a0ee2e commit 2c15c61Copy full SHA for 2c15c61
ts/a11y/speech.ts
@@ -276,7 +276,10 @@ export function SpeechMathDocumentMixin<
276
public attachSpeech(): SpeechMathDocument<N, T, D> {
277
if (!this.processed.isSet('attach-speech')) {
278
const options = this.options;
279
- if (options.enableEnrichment && (options.enableSpeech || options.enableBraille)) {
+ if (
280
+ options.enableEnrichment &&
281
+ (options.enableSpeech || options.enableBraille)
282
+ ) {
283
this.getWebworker();
284
for (const math of this.math) {
285
(math as SpeechMathItem<N, T, D>).attachSpeech(this);
0 commit comments