From 50ab659f99346cc39a173e5a8451cab50ee0b491 Mon Sep 17 00:00:00 2001 From: Juanjo Diaz Date: Sun, 13 Nov 2022 16:49:49 +0100 Subject: [PATCH] chore: add attribution --- AUTHORS | 1 + README.md | 1 + core/clipboard.js | 6 ++++++ 3 files changed, 8 insertions(+) diff --git a/AUTHORS b/AUTHORS index e8fb1240..863dc0d8 100644 --- a/AUTHORS +++ b/AUTHORS @@ -11,3 +11,4 @@ contributors: # to add yourself. - jalf - NTT corp. +- Juanjo Díaz (@juanjoDiaz) diff --git a/README.md b/README.md index a771cb43..f315c8cb 100644 --- a/README.md +++ b/README.md @@ -219,6 +219,7 @@ that list and you think you should be, feel free to send a PR to fix that. * Original Logo : Michael Sersen * tight encoding : Michael Tinglof (Mercuri.ca) * RealVNC RSA AES authentication : USTC Vlab Team + * Clipboard support: Juanjo Díaz * Included libraries: * base64 : Martijn Pieters (Digital Creations 2), Samuel Sieb (sieb.net) diff --git a/core/clipboard.js b/core/clipboard.js index 90fbb8be..d2e0de3c 100644 --- a/core/clipboard.js +++ b/core/clipboard.js @@ -1,3 +1,9 @@ +/* + * noVNC: HTML5 VNC client + * Copyright (c) 2021 Juanjo Díaz + * Licensed under MPL 2.0 or any later version (see LICENSE.txt) + */ + export default class Clipboard { constructor(target) { this._target = target;