(action, tabId)
| 89 | |
| 90 | // - action: "register" or "unregister". |
| 91 | queueAction(action, tabId) { |
| 92 | if (!this.loaded) { |
| 93 | this.queuedActions.push([action, tabId]); |
| 94 | } else { |
| 95 | this.handleAction(action, tabId); |
| 96 | } |
| 97 | } |
| 98 | |
| 99 | // - action: "register" or "unregister". |
| 100 | handleAction(action, tabId) { |
no test coverage detected