Update ui.js

This commit is contained in:
Aungkon Malakar ONC 2024-09-21 01:07:04 +06:00 committed by GitHub
parent 4855362e5a
commit 96a028f8e1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -980,7 +980,7 @@ const UI = {
LocalclipboardSend() { LocalclipboardSend() {
const text = document.querySelector('#hidden_clipboard_sender').value; const text = document.querySelector('#hidden_clipboard_sender').value;
Log.Debug(">> UI.clipboardSend: " + text.substr(0, 40) + "..."); Log.Debug(">> UI.clipboardSend: " + text.substr(0, 40) + "...");
if(text && UI.rfb.clipboardPasteFrom){ if(text && UI.rfb){
UI.rfb.clipboardPasteFrom(text); UI.rfb.clipboardPasteFrom(text);
} }
Log.Debug("<< UI.clipboardSend"); Log.Debug("<< UI.clipboardSend");