We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
fitToWrapper
1 parent 8bc6bf0 commit bbf0461Copy full SHA for bbf0461
src/scripts/h5p-multi-media-choice.js
@@ -23,6 +23,13 @@ export default class MultiMediaChoice extends H5P.Question {
23
// Default values are extended
24
this.params = Util.extendParams(params);
25
26
+ // Override subcontent params
27
+ for (const option of this.params.options) {
28
+ if (option.media?.library?.includes('H5P.Audio')) {
29
+ option.media.params.fitToWrapper = false; // VA-523: prevent warped button
30
+ }
31
32
+
33
this.content = new MultiMediaChoiceContent(
34
this.params,
35
contentId,
0 commit comments