Skip to content

Commit

Permalink
feat(style): fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
sonicoder86 committed Apr 29, 2016
1 parent dff1e2b commit 4844dbb
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
client/setup.spec.js
1 change: 1 addition & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -370,6 +370,7 @@
"expect": true,
"global": true,
"require": true,
"async": true,
"ENVIRONMENT": true
}
}
8 changes: 7 additions & 1 deletion client/app/auth/directives/router_outlet.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,13 @@ export class LoggedInRouterOutlet extends RouterOutlet {
];

static get parameters() {
return [[ViewContainerRef], [DynamicComponentLoader], [Router], [new AttributeMetadata('name'), String], [UserService]];
return [
[ViewContainerRef],
[DynamicComponentLoader],
[Router],
[new AttributeMetadata('name'), String],
[UserService]
];
}

constructor(containerRef, componentLoader, parentRouter, name, userService) {
Expand Down

0 comments on commit 4844dbb

Please sign in to comment.