angular-route-segment
angular-route-segment copied to clipboard
Segment default params override actual ones
Segment definition
.segment('browse', {
default: true,
dependencies: ['what'],
templateUrl: 'views/list.html',
controller: 'FileListCtrl',
params: {what: 'root'}
When I navigate directly to http://host/browse/home, I get the listing not from home, but from root instead.
Checked with release 1.3.0
Could you please make a plunker illustrating this issue?