File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/app/containers/default-layout Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1- import { Component , OnDestroy , Inject } from '@angular/core' ;
1+ import { Component , OnDestroy , Inject } from '@angular/core' ;
22import { DOCUMENT } from '@angular/common' ;
33import { 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 ;
You can’t perform that action at this time.
0 commit comments