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-15 10:59:51 +00:00
parent e25ecdfcf3
commit 1af4e4a874
+1 -1
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');