diff options
author | siikamiika <siikamiika@users.noreply.github.com> | 2019-10-27 15:46:27 +0200 |
---|---|---|
committer | siikamiika <siikamiika@users.noreply.github.com> | 2019-10-27 15:46:27 +0200 |
commit | 48776145d6bdb8aff82e82546583c790353e75b6 (patch) | |
tree | 738b1557aa7362948b7c52e8673fc514858a53a0 /ext/fg/js/api.js | |
parent | d3f51690f8bb236d1ba3c79c20b3a60d3e62dc52 (diff) |
add workaround to Chrome clipboard.readText
For some reason this doesn't work on Firefox, so keep using the new API
for Firefox
Diffstat (limited to 'ext/fg/js/api.js')
-rw-r--r-- | ext/fg/js/api.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/fg/js/api.js b/ext/fg/js/api.js index b0746b85..bbc9b5fc 100644 --- a/ext/fg/js/api.js +++ b/ext/fg/js/api.js @@ -72,3 +72,7 @@ function apiInjectStylesheet(css) { function apiGetEnvironmentInfo() { return utilInvoke('getEnvironmentInfo'); } + +function apiClipboardGet() { + return utilInvoke('clipboardGet'); +} |