mirror of
https://github.com/crypto-pro-web/crypto-pro-js.git
synced 2024-11-24 00:55:00 +03:00
innerText -> textContent
This commit is contained in:
parent
a98c161dd8
commit
ccb133bccc
@ -10,7 +10,7 @@
|
|||||||
list.forEach(function (cert) {
|
list.forEach(function (cert) {
|
||||||
var $certOption = document.createElement('option');
|
var $certOption = document.createElement('option');
|
||||||
|
|
||||||
$certOption.innerText = cert.label;
|
$certOption.textContent = cert.label;
|
||||||
$certOption.value = cert.thumbprint;
|
$certOption.value = cert.thumbprint;
|
||||||
|
|
||||||
$certs.appendChild($certOption);
|
$certs.appendChild($certOption);
|
||||||
|
Loading…
Reference in New Issue
Block a user