mirror of
https://github.com/moodle/moodle.git
synced 2025-04-17 06:25:33 +02:00
MDL-29692 enrol: cohort: Fix default role issue in Chrome
This is related to MDL-24280, the issue still persists in Chrome. The patch fixes it for Chrome and works fine for the most major browsers.
This commit is contained in:
parent
3070626a74
commit
7757237cdd
@ -122,11 +122,7 @@ YUI.add('moodle-enrol_cohort-quickenrolment', function(Y) {
|
||||
break;
|
||||
case 'defaultcohortroleloaded':
|
||||
defaultrole = this.get(DEFAULTCOHORTROLE);
|
||||
panel.get('contentBox').one('.'+CSS.PANELROLES).all('option').each(function(){
|
||||
if (this.get('value')==defaultrole) {
|
||||
this.setAttribute('selected', true);
|
||||
}
|
||||
});
|
||||
panel.get('contentBox').one('.'+CSS.PANELROLES+' select').set('value', defaultrole);
|
||||
break;
|
||||
}
|
||||
},
|
||||
@ -339,4 +335,4 @@ YUI.add('moodle-enrol_cohort-quickenrolment', function(Y) {
|
||||
}
|
||||
}
|
||||
|
||||
}, '@VERSION@', {requires:['base','node', 'overlay', 'io-base', 'test', 'json-parse', 'event-delegate', 'dd-plugin', 'event-key', 'moodle-enrol-notification']});
|
||||
}, '@VERSION@', {requires:['base','node', 'overlay', 'io-base', 'test', 'json-parse', 'event-delegate', 'dd-plugin', 'event-key', 'moodle-enrol-notification']});
|
||||
|
Loading…
x
Reference in New Issue
Block a user