diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2022-10-15 22:43:12 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-15 22:43:12 -0400 |
commit | 9ef7f9d383561831ab1556f2679593235053a08e (patch) | |
tree | a32dd0d18e7f156277e3a887adee889b5f744196 /ext/js/comm/clipboard-monitor.js | |
parent | a370b46fae865951da09d5b7d5d5b1a70588d19c (diff) |
Clipboard updates (#2254)
* Rename
* Rename vars
* Refactor paste target
* Prevent most CSS url() properties from loading
* Add helper function to clear rich function
* Add useRichText argument
* Update condition for using readText
* Fix indent
* Update CSS
Diffstat (limited to 'ext/js/comm/clipboard-monitor.js')
-rw-r--r-- | ext/js/comm/clipboard-monitor.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/js/comm/clipboard-monitor.js b/ext/js/comm/clipboard-monitor.js index 7a678461..f5be04e7 100644 --- a/ext/js/comm/clipboard-monitor.js +++ b/ext/js/comm/clipboard-monitor.js @@ -39,7 +39,7 @@ class ClipboardMonitor extends EventDispatcher { let text = null; try { - text = await this._clipboardReader.getText(); + text = await this._clipboardReader.getText(false); } catch (e) { // NOP } |