Studying the script I find there is a specific function for a click on the header bar to hide the dropdown menu, so I think changing the "hidemenu" to "showmenu" on line 143 in ddlevelsmenu.js
From:-
Code:
if (istoplevel){
this.addEvent(header, function(e){
ddlevelsmenu.hidemenu(ddlevelsmenu.subuls[this._master][parseInt(this._pos)])
}, "click")
}
To:-
Code:
if (istoplevel){
this.addEvent(header, function(e){
ddlevelsmenu.showmenu(ddlevelsmenu.subuls[this._master][parseInt(this._pos)])
}, "click")
}
may fix our problem?
Bookmarks