diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-02-16 13:13:04 -0500 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-02-16 21:43:35 -0500 |
commit | 2c3f510010ca2910b8c227a9888e2c3584840402 (patch) | |
tree | 253ec4be97869bfe7248639b0c64ac95ddd8f9f2 /ext/fg/js/popup.js | |
parent | 1c6ed1d2866d9912b3b65d9e5addf710a6f26b38 (diff) |
Allow apiInjectStylesheet to inject a URL
Diffstat (limited to 'ext/fg/js/popup.js')
-rw-r--r-- | ext/fg/js/popup.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/fg/js/popup.js b/ext/fg/js/popup.js index 45203c03..970c5343 100644 --- a/ext/fg/js/popup.js +++ b/ext/fg/js/popup.js @@ -167,7 +167,7 @@ class Popup { } else { if (!css) { return; } try { - await apiInjectStylesheet(css); + await apiInjectStylesheet('code', css); this._stylesheetInjectedViaApi = true; } catch (e) { // NOP |