* @param {!./view.View} view * @param {boolean=} hidden * @param {!./dialog.DialogConfig=} dialogConfig Configuration options for the * dialog. * @return {!Promise}
(view, hidden = false, dialogConfig = {})
| 11433 | * @return {!Promise} |
| 11434 | */ |
| 11435 | openView(view, hidden = false, dialogConfig = {}) { |
| 11436 | this.handleCancellations(view); |
| 11437 | return this.openDialog(hidden, dialogConfig).then((dialog) => { |
| 11438 | return dialog.openView(view); |
| 11439 | }); |
| 11440 | } |
| 11441 | |
| 11442 | /** |
| 11443 | * Handles cancellations (ex: user clicks close button on dialog). |
nothing calls this directly
no test coverage detected