(combo)
| 401 | } |
| 402 | |
| 403 | add(combo) { |
| 404 | const [found, _] = this.find(combo); |
| 405 | if (found) |
| 406 | return; |
| 407 | this.combos.append(combo); |
| 408 | if (!combo.disabled) { |
| 409 | this._store(); |
| 410 | } |
| 411 | } |
| 412 | |
| 413 | remove(combo) { |
| 414 | const [found, pos] = this.find(combo); |
no test coverage detected