Skip to content

Commit

Permalink
fix(cdk-observers): prevent attribute renaming in closure compilers a…
Browse files Browse the repository at this point in the history
…dvanced optimizations (#7894)
  • Loading branch information
gregmagolan authored and josephperrott committed Nov 10, 2017
1 parent d79903a commit 8dfe470
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/cdk/observers/observe-content.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,9 @@ export class CdkObserveContent implements AfterContentInit, OnDestroy {

if (this._observer) {
this._observer.observe(this._elementRef.nativeElement, {
characterData: true,
childList: true,
subtree: true
'characterData': true,
'childList': true,
'subtree': true
});
}
}
Expand Down

0 comments on commit 8dfe470

Please # to comment.