@@ -38,15 +38,15 @@ import {
38
38
} from '../core' ;
39
39
import { MdTabLabel } from './tab-label' ;
40
40
import { MdTabLabelWrapper } from './tab-label-wrapper' ;
41
- import { MdTabNavBar , MdTabLink } from './tab-nav-bar/tab-nav-bar' ;
41
+ import { MdTabNavBar , MdTabLink , MdTabLinkRipple } from './tab-nav-bar/tab-nav-bar' ;
42
42
import { MdInkBar } from './ink-bar' ;
43
43
import { Observable } from 'rxjs/Observable' ;
44
44
import 'rxjs/add/operator/map' ;
45
+ import { MdRippleModule } from '../core/ripple/ripple' ;
45
46
46
47
47
48
/** Used to generate unique ID's for each tab component */
48
49
let nextId = 0 ;
49
-
50
50
/** A simple change event emitted on focus or selection changes. */
51
51
export class MdTabChangeEvent {
52
52
index : number ;
@@ -375,11 +375,11 @@ export class MdTabBody implements OnInit {
375
375
}
376
376
377
377
@NgModule ( {
378
- imports : [ CommonModule , PortalModule ] ,
378
+ imports : [ CommonModule , PortalModule , MdRippleModule ] ,
379
379
// Don't export MdInkBar or MdTabLabelWrapper, as they are internal implementation details.
380
- exports : [ MdTabGroup , MdTabLabel , MdTab , MdTabNavBar , MdTabLink ] ,
380
+ exports : [ MdTabGroup , MdTabLabel , MdTab , MdTabNavBar , MdTabLink , MdTabLinkRipple ] ,
381
381
declarations : [ MdTabGroup , MdTabLabel , MdTab , MdInkBar , MdTabLabelWrapper ,
382
- MdTabNavBar , MdTabLink , MdTabBody ] ,
382
+ MdTabNavBar , MdTabLink , MdTabBody , MdTabLinkRipple ] ,
383
383
} )
384
384
export class MdTabsModule {
385
385
static forRoot ( ) : ModuleWithProviders {
0 commit comments