wingedfox
wingedfox
Useful for managing external and internal redirects within a route definitions Syntax: ``` javascript $routeSegmentProvider .when('/section', 's1') .when('/section/index', 's1.idx') .segment('section', { redirectTo: 'section/index' }) .within() .segment('idx', { templateUrl: '/views/segment/idx.html' });...
``` $routeSegmentProvider .when('/', 'root') .when('/sub', 'sub') .when('/sub/sub', 'sub.sub'); $routeSegmentProvider .segment('root', { templateUrl: '/views/main.html', controller: 'MainCtrl', resolve: { Settings: function(Settings) { return Settings.load(); } } }) .within() .segment('sub', { templateUrl: '/views/sub.html',...
When I navigate to the root segment with default sub-segment and pre-defined parameters I get ``` Error: Route param `what` is not specified for route `/browse/:what` ``` Segment: ``` .segment('browse',...
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`,...
Hello, I met this issue when started to work on the numbers formatting. Certain locales like RU define thousand separator as an empty string `1000` when others represent it as...
While object retrieved by `getParticipants` has `.participant` property, TS types doesn't have them.
Hi At present eclipse pilot implementation depends on plantuml 2022 and this adds problems with the eclipse plugin updates. Manifest allows Eclipse to update PlantUML core to 2023 which breaks...
Hi, There's a check https://github.com/angular/dgeni-packages/blob/master/jsdoc/services/transforms/extract-access.js#L24 which fails with ``` Illegal use of "@public" tag. You can only use this tag on the following docTypes: ['property', 'method']. Register this docType with...
Hello, bower.json has a couple of the properties issues 1. "license:" key instead of "license", note ":" 2. .bower.json template has "homepage" key, but not bower.json Thanks for the great...
Hi, I'd like to have a Child DI containers in a way like InversifyJS ones in order - to provide per-request context provisioning; - to use electrolyte-based libraries. Is there...