Skip to content
Snippets Groups Projects
Commit b64f2116 authored by comete-upn's avatar comete-upn
Browse files

Ne permuter les menus de section que s’ils existent.

parent 511d99b9
No related branches found
No related tags found
1 merge request!3Resolve "Page figée après une permutation de sections"
......@@ -42,7 +42,10 @@ M.course.format.swap_sections = function(Y, node1, node2) {
SECTIONADDMENUS: 'section_add_menus'
};
var sectionlist = Y.Node.all('.' + CSS.COURSECONTENT + ' ' + M.course.format.get_section_selector(Y));
sectionlist.item(node1).one('.' + CSS.SECTIONADDMENUS).swap(sectionlist.item(node2).one('.' + CSS.SECTIONADDMENUS));
// Swap the non-ajax menus, noting these are not always present (depends on theme and user prefs).
if (sectionlist.item(node1).one('.' + CSS.SECTIONADDMENUS)) {
sectionlist.item(node1).one('.' + CSS.SECTIONADDMENUS).swap(sectionlist.item(node2).one('.' + CSS.SECTIONADDMENUS));
}
};
M.course.format.process_sections = function(Y, sectionlist, response, sectionfrom, sectionto) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment