I was wondering if it's possible to have AngularJS ignore a set of route values, or define a set of route values that should be sent to the server and not handled on the client?
I ask because I'm trying to setup my different login providers, which are handled by the server (node.js) by navigating to /auth/{provider}. If I navigate there, AngularJS tries to jump in and handle that route, but I'd like the server to handle it.
I do know I can make my a tags target "_self" (target="_self") but I'd actually like to handle the redirection from CoffeeScript using $location.url.
EDIT: It also seems I can get around angular by using window.location.pathname. I still don't like this solution. Anyway I can do this using $location provided by AngularJS (or using anything provided by Angular?).
Is this possible? Many thanks in advance!!