- Expose ncyBreadcrumbStateRef for ui-sref usage in custom template (56cec38b, closes #54)
- ncyBreadcrumbLast: Add custom templating (974f99b5, closes #123, #125)
- $breadcrumb: Handle parents provided by StateObject references (f4288d37, closes #82)
- ncyBreadcrumb:
- Add force to ncyBreadcrumb options (31125a38, closes #78)
- ncyBreadcrumbText: Add ncyBreadcrumbText directive (82b2b443, closes #71, #83)
- npm: nothing, it's only a blank release due to a network problem during the last
npm publish
(f...ing npm doesn't allow a republish with the same version number npm-registry-couchapp#148).
- npm: update package.json after (unclean) npm publish (ab8161c2, closes #52)
- sample: Send correct url params for the room link in booking view (876de49a)
- organize state-level options in
ncyBreadcrumb
key instead ofdata
(1ea436d3, closes #30) - curly braces appearing on title of sample app (855e76cb)
- Add a global option to include abstract states (6f0461ea, closes #35, #28)
- $breadcrumb:
- ncyBreadcrumbLast: Add a new directive rendering the last step (1eef24fb, closes #37)
- state-level options has been moved under the custom key
ncyBreadcrumb
in state's configuration.
To migrate the code follow the example below:
// Before
$stateProvider.state('A', {
url: '/a',
data: {
ncyBreadcrumbLabel: 'State A'
}
});
// After
$stateProvider.state('A', {
url: '/a',
ncyBreadcrumb: {
label: 'State A'
}
});
See API reference for more informations. (1ea436d3)
- $breadcrumb: check if a state has a parent when looking for an inheritated property (77e668b5, closes #11)