mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
31 lines
No EOL
443 B
JavaScript
31 lines
No EOL
443 B
JavaScript
// array containing nav items;
|
|
|
|
Telescope.modules.register("secondaryNav", [
|
|
{
|
|
template: 'userMenu',
|
|
order: 10
|
|
},
|
|
{
|
|
template:'notificationsMenu',
|
|
order: 20
|
|
},
|
|
{
|
|
template: 'submitButton',
|
|
order: 30
|
|
}
|
|
]);
|
|
|
|
Telescope.modules.register("mobileNav", [
|
|
{
|
|
template: 'userMenu',
|
|
order: 10
|
|
},
|
|
{
|
|
template:'notificationsMenu',
|
|
order: 20
|
|
},
|
|
{
|
|
template: 'submitButton',
|
|
order: 30
|
|
}
|
|
]); |