(id)
| 82 | } |
| 83 | |
| 84 | getWindowIndexFromId (id) |
| 85 | { |
| 86 | let index = -1; |
| 87 | |
| 88 | for (let i = 0; i < this.#windows.length; i++) |
| 89 | { |
| 90 | if (this.#windows[i].id == id) index = i; |
| 91 | } |
| 92 | |
| 93 | return index; |
| 94 | } |
| 95 | |
| 96 | updateWindowsLocalStorage () |
| 97 | { |
no outgoing calls
no test coverage detected