Skip to content

Commit 738b6be

Browse files
amitportjelbourn
authored andcommitted
fix(tabs): add module dependency on MdCommonModule (#5304)
MdTabsModule **implicitly** depended on MdCommonModule Specifically, for rtl animations. see http://plnkr.co/edit/fBLGThvy7C0G666p56xn?p=preview.
1 parent f3f9f43 commit 738b6be

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/lib/tabs/index.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
import {NgModule} from '@angular/core';
1010
import {CommonModule} from '@angular/common';
11+
import {MdCommonModule} from '../core';
1112
import {ObserveContentModule} from '@angular/cdk';
1213
import {PortalModule} from '../core';
1314
import {MdRippleModule} from '../core/ripple/index';
@@ -26,13 +27,15 @@ import {ScrollDispatchModule} from '../core/overlay/scroll/index';
2627
@NgModule({
2728
imports: [
2829
CommonModule,
30+
MdCommonModule,
2931
PortalModule,
3032
MdRippleModule,
3133
ObserveContentModule,
3234
ScrollDispatchModule,
3335
],
3436
// Don't export all components because some are only to be used internally.
3537
exports: [
38+
MdCommonModule,
3639
MdTabGroup,
3740
MdTabLabel,
3841
MdTab,

0 commit comments

Comments
 (0)