diff --git a/example/cert-list.js b/example/cert-list.js index fb40a67..f8ca40f 100644 --- a/example/cert-list.js +++ b/example/cert-list.js @@ -10,7 +10,7 @@ list.forEach(function (cert) { var $certOption = document.createElement('option'); - $certOption.innerText = cert.label; + $certOption.textContent = cert.label; $certOption.value = cert.thumbprint; $certs.appendChild($certOption);