(text)
| 703 | } |
| 704 | |
| 705 | fullNotification(text) { |
| 706 | try { |
| 707 | fullscreenNotification(text); |
| 708 | if (api.type === 'webextension') { |
| 709 | chrome.runtime.sendMessage({ |
| 710 | name: 'content', |
| 711 | item: { action: 'fullscreenNotification', text }, |
| 712 | }); |
| 713 | } |
| 714 | } catch (e) { |
| 715 | logger.error(e); |
| 716 | } |
| 717 | } |
| 718 | |
| 719 | fillUI() { |
| 720 | j.$('.MalLogin').css('display', ''); |
no test coverage detected