Files
moodle/theme/bootstrap/javascript/headercollapse.js
T
2013-04-03 09:43:18 +08:00

11 lines
410 B
JavaScript

YUI().use('node', function(Y) {
var toggleShow = function(e) {
// Toggle the active class on both the clicked .btn-navbar and the .nav-collapse.
// Our CSS will set the height for these
var togglemenu = Y.one('.nav-collapse');
togglemenu.toggleClass('active');
this.toggleClass('active');
};
Y.delegate('click', toggleShow, Y.config.doc, '.btn-navbar');
});