Skip to content

Commit

Permalink
Fixed clipboard content lost during modal closure.
Browse files Browse the repository at this point in the history
  • Loading branch information
jlesage committed May 10, 2017
1 parent f0f4326 commit e452ffc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rootfs/opt/novnc/app/modules/clipboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ var ClipboardModule = {

handleModalClosed: function() {
UI.rfbDisplayFocus();
$('#clipboard_content').val(UI.clipboardContent);
$('#clipboard_content').val(ClipboardModule.clipboardContent);
},
};

Expand Down

0 comments on commit e452ffc

Please sign in to comment.