October 13th, 2016
0 reactions

PSScriptAnalyzer Community Call – Oct 18, 2016

Please join PSScriptAnalyzer community call on Tuesday, October 18, 2016 10:00 AM PDT via Skype or telephone. You can find the meeting agenda here.

Skype

Click the following link to join the meeting via Skype.

Join online meeting

Phone

Dial +1-323-849-4874 to join the meeting via telephone.

OR

To join the meeting through a local number follow this link: Find a local number

Conference ID: 94231049

For any additional help regarding joining the meeting, follow this link: Help

Category
PowerShell

Author

0 comments

Discussion is closed.

'; block.insertAdjacentElement('beforebegin', codeheader); let button = codeheader.querySelector('.copy-button'); button.addEventListener("click", async () => { let blockToCopy = block; await copyCode(blockToCopy, button); }); } }); async function copyCode(blockToCopy, button) { let code = blockToCopy.querySelector("code"); let text = ''; if (code) { text = code.innerText; } else { text = blockToCopy.innerText; } try { await navigator.clipboard.writeText(text); } catch (err) { console.error('Failed to copy:', err); } button.innerText = "Copied"; setTimeout(() => { button.innerHTML = '' + svgCodeIcon + ' Copy'; }, 1400); }