- πΊπΈUnited States smustgrave
If someone can review can include in one of the last few releases of D7 for quiz
- Status changed to Closed: outdated
4 months ago 9:57pm 11 December 2024
When taking a quiz, the question type dd_lines does not show the drag and drop question.
There is a javascript error because Drupal.settings.quiz_ddlines does not exist.
Replacing
$form['#attached']['js'][] = array(
'data' => array(
'quiz_ddlines' => $default_settings
),
'type' => 'setting'
);
with
drupal_add_js(array('quiz_ddlines' => $default_settings), 'setting');
Fixed it. Why is the form not setting the js settings?
https://www.opigno.org/en/forum/support/picture-not-displayed-questions-...
Needs review
4.0
Code - Quiz core
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
If someone can review can include in one of the last few releases of D7 for quiz