We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 589799e commit dbdc289Copy full SHA for dbdc289
src/cdk/overlay/backdrop.ts
@@ -22,6 +22,7 @@ import {Subject} from 'rxjs/Subject';
22
* @docs-private
23
*/
24
@Component({
25
+ moduleId: module.id,
26
template: '',
27
host: {
28
'class': 'cdk-overlay-backdrop',
@@ -38,6 +39,7 @@ import {Subject} from 'rxjs/Subject';
38
39
],
40
changeDetection: ChangeDetectionStrategy.OnPush,
41
encapsulation: ViewEncapsulation.None,
42
+ preserveWhitespaces: false,
43
})
44
export class MdBackdrop implements OnDestroy {
45
_animationState = 'visible';
src/cdk/overlay/tsconfig-build.json
@@ -1,7 +1,8 @@
1
{
2
"extends": "../tsconfig-build",
3
"files": [
4
- "public-api.ts"
+ "public-api.ts",
5
+ "../typings.d.ts"
6
7
"angularCompilerOptions": {
8
"annotateForClosureCompiler": true,
0 commit comments