Take the 2-minute tour ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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/
share|improve this question
    
This issue is not related to angular-breadcrumb, the 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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.