Skip to content

Commit

Permalink
chore: update comment
Browse files Browse the repository at this point in the history
  • Loading branch information
andreeapescar committed Sep 24, 2024
1 parent bae158a commit 3c3bfe1
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions src/components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export namespace Components {
*/
'uploadSoundSupport': ExternalUploadSoundSupport;
/**
* If the Player should try to use math-rendering-accessible. Do not set this to TRUE if you're not using item types that were released before having the math-rendering-accessible fix. The versions that can be safely used can be found here: TODO.
* Enables math-rendering accessibility support for the Player. Set to TRUE only if you're using item types that include the math-rendering accessibility fix. For safe version compatibility, refer to the following link: TODO (https://illuminate.atlassian.net/wiki/x/zIBkFwQ).
*/
'useMathRenderingAccessible': boolean;
'validateModels': () => Promise<any>;
Expand Down Expand Up @@ -159,7 +159,7 @@ export namespace Components {
*/
'updateElementModel': (update: PieModel) => Promise<void>;
/**
* If the Player should try to use math-rendering-accessible. Do not set this to TRUE if you're not using item types that were released before having the math-rendering-accessible fix. The versions that can be safely used can be found here: TODO.
* Enables math-rendering accessibility support for the Player. Set to TRUE only if you're using item types that include the math-rendering accessibility fix. For safe version compatibility, refer to the following link: TODO (https://illuminate.atlassian.net/wiki/x/zIBkFwQ).
*/
'useMathRenderingAccessible': boolean;
'version': string;
Expand Down Expand Up @@ -299,7 +299,7 @@ declare namespace LocalJSX {
*/
'uploadSoundSupport'?: ExternalUploadSoundSupport;
/**
* If the Player should try to use math-rendering-accessible. Do not set this to TRUE if you're not using item types that were released before having the math-rendering-accessible fix. The versions that can be safely used can be found here: TODO.
* Enables math-rendering accessibility support for the Player. Set to TRUE only if you're using item types that include the math-rendering accessibility fix. For safe version compatibility, refer to the following link: TODO (https://illuminate.atlassian.net/wiki/x/zIBkFwQ).
*/
'useMathRenderingAccessible'?: boolean;
'version'?: string;
Expand Down Expand Up @@ -371,7 +371,7 @@ declare namespace LocalJSX {
*/
'showBottomBorder'?: boolean;
/**
* If the Player should try to use math-rendering-accessible. Do not set this to TRUE if you're not using item types that were released before having the math-rendering-accessible fix. The versions that can be safely used can be found here: TODO.
* Enables math-rendering accessibility support for the Player. Set to TRUE only if you're using item types that include the math-rendering accessibility fix. For safe version compatibility, refer to the following link: TODO (https://illuminate.atlassian.net/wiki/x/zIBkFwQ).
*/
'useMathRenderingAccessible'?: boolean;
'version'?: string;
Expand Down
6 changes: 3 additions & 3 deletions src/components/pie-author/pie-author.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,9 @@ export class Author {
@Prop() isInsidePieApiAuthor?: boolean = false;

/**
* If the Player should try to use math-rendering-accessible.
* Do not set this to TRUE if you're not using item types that were released before having the math-rendering-accessible fix.
* The versions that can be safely used can be found here: TODO.
* Enables math-rendering accessibility support for the Player.
* Set to TRUE only if you're using item types that include the math-rendering accessibility fix.
* For safe version compatibility, refer to the following link: TODO (https://illuminate.atlassian.net/wiki/x/zIBkFwQ).
*/
@Prop() useMathRenderingAccessible: boolean = false;

Expand Down
6 changes: 3 additions & 3 deletions src/components/pie-player/pie-player.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -163,9 +163,9 @@ export class Player {
version: string = VERSION;

/**
* If the Player should try to use math-rendering-accessible.
* Do not set this to TRUE if you're not using item types that were released before having the math-rendering-accessible fix.
* The versions that can be safely used can be found here: TODO.
* Enables math-rendering accessibility support for the Player.
* Set to TRUE only if you're using item types that include the math-rendering accessibility fix.
* For safe version compatibility, refer to the following link: TODO (https://illuminate.atlassian.net/wiki/x/zIBkFwQ).
*/
@Prop() useMathRenderingAccessible: boolean = false;

Expand Down

0 comments on commit 3c3bfe1

Please sign in to comment.