Commit 390b7a26 by Saliya Randunu

S12521571 # Client - Incoming Issues (raised by Client) #Copy Job Ad does not work

parent b496ffe8
......@@ -24,7 +24,7 @@
function copyToClipboard(which,ele) {
var aux = document.createElement("textarea");
aux.value = $(ele).html().trim();
aux.value = $(ele).text().trim();
document.body.appendChild(aux);
aux.select();
document.execCommand("copy");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment