Merge branch 'mdl-54852-master' of https://github.com/Dagefoerde/moodle

This commit is contained in:
David Monllao 2016-11-09 13:07:26 +08:00
commit 6e986b2919
2 changed files with 6 additions and 3 deletions

File diff suppressed because one or more lines are too long

View File

@ -23,10 +23,10 @@
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
* @since 3.1
*/
define(['jquery', 'core/notification', 'core/templates', 'core/fragment',
define(['jquery', 'core/yui', 'core/notification', 'core/templates', 'core/fragment',
'core/ajax', 'core/str', 'mod_assign/grading_form_change_checker',
'mod_assign/grading_events'],
function($, notification, templates, fragment, ajax, str, checker, GradingEvents) {
function($, Y, notification, templates, fragment, ajax, str, checker, GradingEvents) {
/**
* GradingPanel class.
@ -147,6 +147,9 @@ define(['jquery', 'core/notification', 'core/templates', 'core/fragment',
]).done(function(strs) {
notification.alert(strs[0], strs[1]);
}).fail(notification.exception);
Y.use('moodle-core-formchangechecker', function() {
M.core_formchangechecker.reset_form_dirty_state();
});
if (nextUserId == this._lastUserId) {
$(document).trigger('reset', nextUserId);
} else {