File tree Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -90,15 +90,14 @@ export class ConnectedPositionStrategy implements PositionStrategy {
90
90
this . _pane = overlayRef . overlayElement ;
91
91
}
92
92
93
- /** To be used to for any cleanup after the element gets destroyed. */
93
+ /** Performs any cleanup after the element is destroyed. */
94
94
dispose ( ) { }
95
95
96
96
/**
97
97
* Updates the position of the overlay element, using whichever preferred position relative
98
98
* to the origin fits on-screen.
99
99
* @docs -private
100
100
*
101
- * @param element Element to which to apply the CSS styles.
102
101
* @returns Resolves when the styles have been applied.
103
102
*/
104
103
apply ( ) : void {
Original file line number Diff line number Diff line change @@ -168,9 +168,7 @@ export class GlobalPositionStrategy implements PositionStrategy {
168
168
parentStyles . alignItems = this . _alignItems ;
169
169
}
170
170
171
- /**
172
- * Removes the wrapper element from the DOM.
173
- */
171
+ /** Removes the wrapper element from the DOM. */
174
172
dispose ( ) : void {
175
173
if ( this . _wrapper && this . _wrapper . parentNode ) {
176
174
this . _wrapper . parentNode . removeChild ( this . _wrapper ) ;
You can’t perform that action at this time.
0 commit comments