angular-breadcrumb icon indicating copy to clipboard operation
angular-breadcrumb copied to clipboard

Generate a breadcrumb from ui-router's states

Results 75 angular-breadcrumb issues
Sort by recently updated
recently updated
newest added

Hi! First of all, great module! It would be nice if this module supported [translations](https://github.com/angular-translate/angular-translate) for the breadcrumbs labels. It could be passed in as an extra option to enable...

answered

I'm using angular 1.3.16, ui-router 0.2.13, and breadcrumb 0.4.1. I've followed the getting started steps. The breadcrumb only ever shows the current page. When debugging, the chain is always empty....

Hi, is there a reason why you need to pass the url params from the current state to the destination (the parent breadcrumb link). Most of the time the url...

Could You add common js support? Examples: - [angular-ui-router](https://github.com/angular-ui/ui-router/blob/f5fd57860c15e8d4b6b9c26c8ccae504d213c6e4/Gruntfile.js#L45-L47) - [anguar-cookie](https://github.com/angular/bower-angular-cookies/blob/master/index.js) Result file should be like: ``` js /* commonjs package manager support (eg componentjs) */ if (typeof module !==...

Say I am on this breadcrumb: App > Products > Pepsi > Edit The parent of "Edit" is the Product "Pepsi". Except the name "Pepsi" is coming from ProductController's $scope....

Since I dropped support for Angular 1.0.8 (see https://github.com/ncuillery/angular-breadcrumb/commit/b023c4fcf3f2e830b4afec68d66af67ddd313b28), the build-in templates can now use `ngIf` instead of the ugly `ngSwitch`. Moreover, as @psi-4ward suggested (#54), templates can use the...

enhancement
pr welcome

Hi! I'm currently working on an app that has consist of two submodules (where each module has it's own modules/states) and one of the requirements is that one module should...

Hi All, Looking to change the parent state url to different upon the navigate to child state. Can i know if its possible ? Regards, Ravi

Is it possible to either set the label from the controller (which in my opinion would be cleaner if the label is dynamic) or define a property to use on...

This may just be a scoping issue but was hoping you had a work around. Below is my state ``` .state('home.metric', { url: '/Metric/:metricId' controller: 'MyCtrl' ncyBreadcrumb: { label: '{{getLabel($stateParams.metricId)}}'...