File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -27,11 +27,12 @@ export class MdDialog {
27
27
return this . _parentDialog ? this . _parentDialog . _openDialogs : this . _openDialogsAtThisLevel ;
28
28
}
29
29
30
- /** Subject for notifying the user that all open dialogs have finished closing . */
30
+ /** Subject for notifying the user that a dialog has opened . */
31
31
get _afterOpen ( ) : Subject < MdDialogRef < any > > {
32
32
return this . _parentDialog ? this . _parentDialog . _afterOpen : this . _afterOpenAtThisLevel ;
33
33
}
34
- /** Subject for notifying the user that a dialog has opened. */
34
+
35
+ /** Subject for notifying the user that all open dialogs have finished closing. */
35
36
get _afterAllClosed ( ) : Subject < void > {
36
37
return this . _parentDialog ?
37
38
this . _parentDialog . _afterAllClosed : this . _afterAllClosedAtThisLevel ;
@@ -215,4 +216,3 @@ export class MdDialog {
215
216
function _applyConfigDefaults ( config : MdDialogConfig ) : MdDialogConfig {
216
217
return extendObject ( new MdDialogConfig ( ) , config ) ;
217
218
}
218
-
You can’t perform that action at this time.
0 commit comments