angular-breadcrumb
Advanced tools
Changelog
0.5.0 (2016-11-14)
<a name="0.4.1"></a>
<a name="0.4.0"></a>
<a name="0.3.3"></a>
<a name="0.3.2"></a>
npm publish
(f...ing npm doesn't allow a republish with the same version number npm-registry-couchapp#148).<a name="0.3.1"></a>
<a name="0.3.0"></a>
Changelog
Changelog
0.3.2 (2014-11-15)
npm publish
(f...ing npm doesn't allow a republish with the same version number npm-registry-couchapp#148).<a name="0.3.1"></a>
Changelog
0.3.0 (2014-10-29)
ncyBreadcrumb
key instead of data
(1ea436d3, closes #30)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)
<a name="0.2.3"></a>