-
Hi ! Don'tknow if this project is still supported, but will ask the question anyway : |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hi! The project is indeed still supported, both for bugfixes and feature requests. Thanks for your suggestion, we think it's a great idea and will be coming in the next update. |
Beta Was this translation helpful? Give feedback.
-
Support for pictures in multiple choice questions has been added in c65e5a2. Example usage: ...
new QuestionModel({
type: QuestionType.MultiplePictureChoice,
options: [
new ChoiceOption({
imageSrc: '...',
imageAlt: '...'
}),
new ChoiceOption({
title: '...'
})
]
})
... We haven't yet pushed the new version to npm but we'll do this shortly as well. |
Beta Was this translation helpful? Give feedback.
Support for pictures in multiple choice questions has been added in c65e5a2. Example usage:
We haven't yet pushed the new version to npm but we'll do this shortly as well.