- 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)