We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi @ncuillery, I tried to edit this wiki but I think it's not allowed for non-collaborators.
This is what I want to add just below State options as first property:
State options
force
Gives the ability to show specific abstract states, even if options.includeAbstract is turned off in global configuration.
options.includeAbstract
For example, this state's config:
$stateProvider.state('home', { url: '/home', templateUrl: 'views/home.html', ncyBreadcrumb: { label: 'Home' } }); $stateProvider.state('list', { abstract: true, ncyBreadcrumb: { force: true, label: 'List', parent: 'home' } }); $stateProvider.state('list.contact', { url: '/contact', templateUrl: 'views/contact.html', ncyBreadcrumb: { label: 'Contact' } });
... will produce Home / List / Contact rather than Home / Contact.
Home / List / Contact
Home / Contact
Thanks!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi @ncuillery, I tried to edit this wiki but I think it's not allowed for non-collaborators.
This is what I want to add just below
State options
as first property:force
Gives the ability to show specific abstract states, even if
options.includeAbstract
is turned off in global configuration.For example, this state's config:
... will produce
Home / List / Contact
rather thanHome / Contact
.Thanks!
The text was updated successfully, but these errors were encountered: