#1: Adding ability to copy link by clicking it
Jenkins Production Deployment Details

This commit is contained in:
Patrick Müller 2021-10-08 06:57:05 +02:00
parent bc9a43e648
commit ebfe66bb89
Signed by: Paddy
GPG Key ID: 3433DBC617B195CA
1 changed files with 18 additions and 0 deletions

View File

@ -4,8 +4,26 @@ $(document).ready(function () {
$('#submitBtn').click(function () {
generateLink();
});
$('#full-link').click(function () {
let element = $('#full-link');
let text = element.text()
copyToClipboard(text);
element.text('Copied!');
setTimeout(function () {
element.text(text);
}, 2000);
});
});
function copyToClipboard(text) {
var $temp = $("<input>");
$("body").append($temp);
$temp.val(text).select();
document.execCommand("copy");
$temp.remove();
}
function generateLink() {
let selectedCourseFromPicker = $('#coursename').val().toString();