Created
January 4, 2017 09:44
-
-
Save peterheard01/e138191604a9febba3a0869d7ab94475 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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