Launcher: implement copy to clipboard

Change-Id: Idbcf5d1bfe574005d5abb60e519eac3ede6aec52
diff --git a/core/installer/welcome/static/launcher.js b/core/installer/welcome/static/launcher.js
index 58ab6af..cbd35fd 100644
--- a/core/installer/welcome/static/launcher.js
+++ b/core/installer/welcome/static/launcher.js
@@ -134,3 +134,13 @@
     }
   });
 });
+
+function copyToClipboard(elem, text) {
+  navigator.clipboard.writeText(text);
+  elem.setAttribute("data-tooltip", "Copied");
+  elem.setAttribute("data-placement", "bottom");
+  setTimeout(() => {
+	elem.removeAttribute("data-tooltip");
+	elem.removeAttribute("data-placement");
+  }, 500);
+}