Skip to content

Instantly share code, notes, and snippets.

@peterheard01
Created January 4, 2017 09:44
Show Gist options
  • Save peterheard01/e138191604a9febba3a0869d7ab94475 to your computer and use it in GitHub Desktop.
Save peterheard01/e138191604a9febba3a0869d7ab94475 to your computer and use it in GitHub Desktop.
tree = new TreeModel();
root = tree.parse({
children: [
{
mobileTitle : 'Dashboard',
desktopTitle : 'My Sessions'
stateName : 'app.dashboard'
children: [
{
mobileTitle : 'Routers',
desktopTitle : 'Routers',
stateName : 'app.dashboard.routers'
},
{
mobileTitle : 'History',
desktopTitle : 'History',
stateName : 'app.dashboard.history'
}
]
},
{
etc...
},
{
etc...
}
]
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment