@@ -135,7 +135,7 @@ export class MdSelect implements AfterContentInit, OnDestroy, OnInit, ControlVal
135
135
private _tabSubscription : Subscription ;
136
136
137
137
/** Subscription to global scrolled events while the select is open. */
138
- private _scrolledSubscription : Subscription ;
138
+ private _scrollSubscription : Subscription ;
139
139
140
140
/** Whether filling out the select is required in the form. */
141
141
private _required : boolean = false ;
@@ -381,7 +381,7 @@ export class MdSelect implements AfterContentInit, OnDestroy, OnInit, ControlVal
381
381
this . _calculateOverlayPosition ( ) ;
382
382
this . _placeholderState = this . _floatPlaceholderState ( ) ;
383
383
this . _panelOpen = true ;
384
- this . _scrolledSubscription = this . _scrollDispatcher . scrolled ( 0 , ( ) => {
384
+ this . _scrollSubscription = this . _scrollDispatcher . scrolled ( 0 , ( ) => {
385
385
this . overlayDir . overlayRef . updatePosition ( ) ;
386
386
} ) ;
387
387
}
@@ -395,9 +395,9 @@ export class MdSelect implements AfterContentInit, OnDestroy, OnInit, ControlVal
395
395
this . _placeholderState = '' ;
396
396
}
397
397
398
- if ( this . _scrolledSubscription ) {
399
- this . _scrolledSubscription . unsubscribe ( ) ;
400
- this . _scrolledSubscription = null ;
398
+ if ( this . _scrollSubscription ) {
399
+ this . _scrollSubscription . unsubscribe ( ) ;
400
+ this . _scrollSubscription = null ;
401
401
}
402
402
403
403
this . _focusHost ( ) ;
0 commit comments