We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d44f7e0 commit ee31a24Copy full SHA for ee31a24
app/ui.js
@@ -1782,11 +1782,11 @@ const UI = {
1782
updateClipboard() {
1783
browserAsyncClipboardSupport()
1784
.then((support) => {
1785
- if (support === 'unsupported') {
+ if (support === 'unsupported' || support === 'denied') {
1786
// Use fallback clipboard panel
1787
return;
1788
}
1789
- if (support === 'denied' || support === 'available') {
+ if (support === 'available') {
1790
UI.closeClipboardPanel();
1791
document.getElementById('noVNC_clipboard_button')
1792
.classList.add('noVNC_hidden');
0 commit comments