Merge branch 'MDL-47981-master' of git://github.com/damyon/moodle

This commit is contained in:
Dan Poltawski 2014-11-05 12:00:19 +00:00
commit f3fd919187

View File

@ -12,9 +12,9 @@ M.gradereport_singleview.init = function(Y) {
}; };
}; };
link.on('click', function() { link.on('click', function(e) {
e.preventDefault();
Y.all('input[name^=' + type + ']').each(toggle(link.hasClass('all'))); Y.all('input[name^=' + type + ']').each(toggle(link.hasClass('all')));
return false;
}); });
}); });