enhanced ModuleActions component to display panes in a submenu, added more containers to Oqtane theme, added more panes to MultiPane layout, added module outline in edit mode to distinguish modules in panes, consolidated to use a single default AdminPane named "Content", fixed bug related to custom Admin Container behavior
This commit is contained in:
8
Oqtane.Server/wwwroot/js/app.js
Normal file
8
Oqtane.Server/wwwroot/js/app.js
Normal file
@ -0,0 +1,8 @@
|
||||
function subMenu(a) {
|
||||
event.preventDefault();
|
||||
event.stopPropagation();
|
||||
|
||||
var li = a.parentElement, submenu = li.getElementsByTagName('ul')[0];
|
||||
submenu.style.display = submenu.style.display == "block" ? "none" : "block";
|
||||
return false;
|
||||
}
|
Reference in New Issue
Block a user