* Safely close a window * @param {string} name window
(name)
| 459 | * @param {string} name window |
| 460 | */ |
| 461 | safeClose(name) { |
| 462 | if ( this.isValid(name) && this.isVisible(name) ) { |
| 463 | this.win[name].close() |
| 464 | } |
| 465 | } |
| 466 | |
| 467 | /** |
| 468 | * Safely close all sub windows |
no test coverage detected