MDL-29743 quiz: Finish attempt link didn't save responses in some brosers.

Thanks to Brandon Browning for identifying the problem. It is quite subtle why this typo would have this effect. You need to look at the implementation of the preventDefault method in lib/yui/3.4.1/build/event-base/event-base.js.
This commit is contained in:
Tim Hunt 2011-11-09 11:45:02 +00:00
parent 6be90ce05f
commit cb1564b1ce

View File

@ -170,7 +170,7 @@ M.mod_quiz.nav.init = function(Y) {
if (Y.one('a.endtestlink')) {
Y.on('click', function(e) {
e.preventDefault(e);
e.preventDefault();
Y.one('#followingpage').set('value', -1);
Y.one('#responseform').submit();
}, 'a.endtestlink');