Overall my URLs follow the standard http://sitename/something#/rounds/2
The "when" to routeProvider
goes like this:
.when('/rounds/:param', {
templateUrl:,
label:,
})
Ok, but now I have an URL with a question mark like this: http://sitename/something#/rounds/2?add_on=2
How can I make the routerProvider
"when" deal with this?
This do not works:
.when('/rounds/:param:param', {
templateUrl:,
label:,
})
How make this kind of URL works?