OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/public/javascripts/jquery.menu_expand.js

13 lines
301 B

/*
* Expands Redmine's current menu
*/
(function($) {
$.menu_expand = function(options) {
var opts = $.extend({
menu: '#main-menu',
menuItem: '.selected'
}, options);
$(opts.menu +' '+ opts.menuItem).toggleClass("open").siblings("ul").show();
}})(jQuery);