mirror of
https://github.com/gchq/CyberChef.git
synced 2024-11-02 22:21:01 +01:00
Merge remote-tracking branch 'upstream/master' into multiple-input-files
This commit is contained in:
commit
7586c3ef8a
2
package-lock.json
generated
2
package-lock.json
generated
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "cyberchef",
|
"name": "cyberchef",
|
||||||
"version": "8.31.3",
|
"version": "8.31.4",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "cyberchef",
|
"name": "cyberchef",
|
||||||
"version": "8.31.3",
|
"version": "8.31.4",
|
||||||
"description": "The Cyber Swiss Army Knife for encryption, encoding, compression and data analysis.",
|
"description": "The Cyber Swiss Army Knife for encryption, encoding, compression and data analysis.",
|
||||||
"author": "n1474335 <n1474335@gmail.com>",
|
"author": "n1474335 <n1474335@gmail.com>",
|
||||||
"homepage": "https://gchq.github.io/CyberChef",
|
"homepage": "https://gchq.github.io/CyberChef",
|
||||||
|
@ -293,7 +293,9 @@ class HTMLIngredient {
|
|||||||
const op = el.parentNode.parentNode;
|
const op = el.parentNode.parentNode;
|
||||||
const target = op.querySelectorAll(".arg")[this.target];
|
const target = op.querySelectorAll(".arg")[this.target];
|
||||||
|
|
||||||
target.value = el.childNodes[el.selectedIndex].getAttribute("populate-value");
|
const popVal = el.childNodes[el.selectedIndex].getAttribute("populate-value");
|
||||||
|
if (popVal !== "") target.value = popVal;
|
||||||
|
|
||||||
const evt = new Event("change");
|
const evt = new Event("change");
|
||||||
target.dispatchEvent(evt);
|
target.dispatchEvent(evt);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user