* Force a window to be focused * @param {string} name window
(name)
| 488 | * @param {string} name window |
| 489 | */ |
| 490 | forceFocus (name) { |
| 491 | if ( this.isValid(name) ) { |
| 492 | this.win[name].show() |
| 493 | this.win[name].focus() |
| 494 | } |
| 495 | } |
| 496 | |
| 497 | /** |
| 498 | * Raise or create the named window, run the callback on completion |
no test coverage detected