File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 99import { MdInkBar } from '../ink-bar' ;
1010import { MdRipple } from '../../core/ripple/index' ;
1111import { ViewportRuler } from '../../core/overlay/position/viewport-ruler' ;
12- import { MD_DISABLE_RIPPLES } from '../../core/ripple/ripple' ;
12+ import { MD_RIPPLE_GLOBAL_OPTIONS , RippleGlobalOptions } from '../../core/ripple/ripple' ;
1313
1414/**
1515 * Navigation component matching the styles of the tab group header.
@@ -83,7 +83,7 @@ export class MdTabLink {
8383} )
8484export class MdTabLinkRipple extends MdRipple {
8585 constructor ( elementRef : ElementRef , ngZone : NgZone , ruler : ViewportRuler ,
86- @Optional ( ) @Inject ( MD_DISABLE_RIPPLES ) forceDisableRipples : boolean ) {
87- super ( elementRef , ngZone , ruler , forceDisableRipples ) ;
86+ @Optional ( ) @Inject ( MD_RIPPLE_GLOBAL_OPTIONS ) globalOptions : RippleGlobalOptions ) {
87+ super ( elementRef , ngZone , ruler , globalOptions ) ;
8888 }
8989}
You can’t perform that action at this time.
0 commit comments