Skip to content

Commit 3178bea

Browse files
committed
style: format code
1 parent 4c0a7c2 commit 3178bea

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/app/containers/default-layout/default-layout.component.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {Component, OnDestroy, Inject} from '@angular/core';
1+
import { Component, OnDestroy, Inject } from '@angular/core';
22
import { DOCUMENT } from '@angular/common';
33
import { navItems } from './../../_nav';
44

@@ -11,7 +11,7 @@ export class DefaultLayoutComponent implements OnDestroy {
1111
public navItems = navItems;
1212
public sidebarMinimized = true;
1313
private changes: MutationObserver;
14-
public element: HTMLElement ;
14+
public element: HTMLElement;
1515
constructor(@Inject(DOCUMENT) _document?: any) {
1616

1717
this.changes = new MutationObserver((mutations) => {
@@ -20,7 +20,7 @@ export class DefaultLayoutComponent implements OnDestroy {
2020

2121
this.changes.observe(<Element>this.element, {
2222
attributes: true,
23-
attributeFilter: [ 'class' ]
23+
attributeFilter: ['class']
2424
});
2525

2626
this.element = _document.body;

0 commit comments

Comments
 (0)