Merge branch 'master' of https://github.com/VirtualColossus/CyberChef into VirtualColossus-master

This commit is contained in:
n1474335 2020-03-06 10:43:52 +00:00
commit c4493d15b6
7 changed files with 1266 additions and 1 deletions

View file

@ -293,6 +293,16 @@ class HTMLIngredient {
this.manager.addDynamicListener(".arg-selector", "change", this.argSelectorChange, this);
break;
case "label":
html += `<div class="form-group">
<label>${this.name}</label>
<input type="hidden"
class="form-control arg"
id="${this.id}"
arg-name="${this.name}"
value="">
</div>`;
break;
default:
break;
}