MDL-79863 qtype_ordering: qtype/ordering fix Github issue #36: draggable items become stuck to cursor when logged as student in Boost theme on Moodle 3.6

This commit is contained in:
Gordon Bateson 2018-12-22 22:14:12 +09:00 committed by Mathew May
parent 50bc2c0f5d
commit ce8a32b5b4
2 changed files with 3 additions and 3 deletions

View File

@ -146,7 +146,7 @@ class qtype_ordering_renderer extends qtype_with_combined_feedback_renderer {
$printeditems = true;
$result .= html_writer::start_tag('div', array('class' => 'ablock', 'id' => $ablockid));
$result .= html_writer::start_tag('div', array('class' => 'answer ordering'));
$result .= html_writer::start_tag('ul', array('class' => 'sortablelist', 'id' => $sortableid));
$result .= html_writer::start_tag('ul', array('class' => 'sortablelist', 'id' => $sortableid, 'contenteditable' => 'true'));
}
// Set the CSS class and correctness img for this response.

View File

@ -29,5 +29,5 @@ $plugin->cron = 0;
$plugin->component = 'qtype_ordering';
$plugin->maturity = MATURITY_STABLE;
$plugin->requires = 2010112400; // Moodle 2.0
$plugin->version = 2018122179;
$plugin->release = '2018-12-21 (79)';
$plugin->version = 2018122280;
$plugin->release = '2018-12-22 (80)';