Skip to content
Snippets Groups Projects
Commit 9f1e41da authored by DELARUELLE Myriam's avatar DELARUELLE Myriam
Browse files

Merge branch '3-permutation-de-sections' into 'master'

Resolve "Page figée après une permutation de sections"

Closes #3

See merge request !3
parents 14d022d8 b64f2116
Branches
Tags
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.
Please register or to comment