Merge branch 'm28_MDL-46900' of https://github.com/totara/moodle

This commit is contained in:
Eloy Lafuente (stronk7) 2014-08-25 20:55:09 +02:00
commit 56127f65af
4 changed files with 4 additions and 4 deletions

View file

@ -708,7 +708,7 @@ NS.setup_toggle_show = function() {
NS.toggle_show = function(e) {
// Toggle the active class on both the clicked .btn-navbar and the .nav-collapse.
// Our CSS will set the height for these.
Y.one(SELECTORS.NAV_COLLAPSE).toggleClass(CSS.ACTIVE);
Y.all(SELECTORS.NAV_COLLAPSE).toggleClass(CSS.ACTIVE);
e.currentTarget.toggleClass(CSS.ACTIVE);
};

View file

@ -698,7 +698,7 @@ NS.setup_toggle_show = function() {
NS.toggle_show = function(e) {
// Toggle the active class on both the clicked .btn-navbar and the .nav-collapse.
// Our CSS will set the height for these.
Y.one(SELECTORS.NAV_COLLAPSE).toggleClass(CSS.ACTIVE);
Y.all(SELECTORS.NAV_COLLAPSE).toggleClass(CSS.ACTIVE);
e.currentTarget.toggleClass(CSS.ACTIVE);
};

View file

@ -98,6 +98,6 @@ NS.setup_toggle_show = function() {
NS.toggle_show = function(e) {
// Toggle the active class on both the clicked .btn-navbar and the .nav-collapse.
// Our CSS will set the height for these.
Y.one(SELECTORS.NAV_COLLAPSE).toggleClass(CSS.ACTIVE);
Y.all(SELECTORS.NAV_COLLAPSE).toggleClass(CSS.ACTIVE);
e.currentTarget.toggleClass(CSS.ACTIVE);
};