no-acme #10
15
app.js
15
app.js
|
@ -127,6 +127,9 @@
|
|||
$$('input').map(function ($el) { $el.disabled = true; });
|
||||
$$('button').map(function ($el) { $el.disabled = true; });
|
||||
|
||||
try {
|
||||
|
||||
|
||||
var opts = {
|
||||
jwk: JSON.parse($('textarea[name="jwk"]').value),
|
||||
claims: {
|
||||
|
@ -136,6 +139,7 @@
|
|||
};
|
||||
|
||||
Keypairs.signJwt(opts).then(function (msg) {
|
||||
document.getElementById(`sign-error`).innerText = null;
|
||||
$('.js-jwt').innerText = msg;
|
||||
$('.js-toc-jwt').hidden = false;
|
||||
var msgArr = msg.split(".")
|
||||
|
@ -152,7 +156,18 @@
|
|||
$('.js-pem-loading').hidden = true;
|
||||
$$('input').map(function ($el) { $el.disabled = false; });
|
||||
$$('button').map(function ($el) { $el.disabled = false; });
|
||||
}).catch(function (error) {
|
||||
document.getElementById(`sign-error`).innerText = error.message
|
||||
$('.js-pem-loading').hidden = true;
|
||||
$$('input').map(function ($el) { $el.disabled = false; });
|
||||
$$('button').map(function ($el) { $el.disabled = false; });
|
||||
})
|
||||
} catch (error) {
|
||||
document.getElementById(`sign-error`).innerText = error.message
|
||||
$('.js-pem-loading').hidden = true;
|
||||
$$('input').map(function ($el) { $el.disabled = false; });
|
||||
$$('button').map(function ($el) { $el.disabled = false; });
|
||||
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
|
|
|
@ -15,6 +15,9 @@
|
|||
white-space: -o-pre-wrap; /* Opera 7 */
|
||||
word-wrap: break-word; /* IE */
|
||||
}
|
||||
.errors {
|
||||
color: red;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
|
Loading…
Reference in New Issue
What's this hard-coded value for?