I am using angular-breadcrumb for breadcrumbs. I would like to disable URL encoding, for example: I have a state:
state('foo', {
url : '/foo',
templateUrl : 'foo/bar',
ncyBreadcrumb: {
label: 'ABC',
parent: 'main'({foo : 'n,y'})
}
});
And for this state I recive breadcrumb URL:
app/main#/n%2Cy/
But I want to get:
app/main#/n,y/
parent
property is only transferred to $state.href who generate the link. As you can see in this plunker, the ui-router encode all the URL it generates. I suggest you to report an issue to the ui-router with a clear example without reference to angular-breadcrumb – ncuillery Dec 11 '14 at 16:49