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 @@ -99,15 +99,14 @@ export class ConnectedPositionStrategy implements PositionStrategy {
99
99
this . _pane = overlayRef . overlayElement ;
100
100
}
101
101
102
- /** To be used to for any cleanup after the element gets destroyed. */
102
+ /** Performs any cleanup after the element is destroyed. */
103
103
dispose ( ) { }
104
104
105
105
/**
106
106
* Updates the position of the overlay element, using whichever preferred position relative
107
107
* to the origin fits on-screen.
108
108
* @docs -private
109
109
*
110
- * @param element Element to which to apply the CSS styles.
111
110
* @returns Resolves when the styles have been applied.
112
111
*/
113
112
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