mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-20 14:56:19 -04:00
Converted modals to Bootstrap 4 Material Design
This commit is contained in:
parent
7d410fcdc9
commit
4147ec719b
14 changed files with 250 additions and 250 deletions
|
@ -270,7 +270,10 @@ class ControlsWaiter {
|
|||
}
|
||||
|
||||
// Populate textarea with first recipe
|
||||
document.getElementById("load-text").value = savedRecipes.length ? savedRecipes[0].recipe : "";
|
||||
const loadText = document.getElementById("load-text");
|
||||
const evt = new Event("change");
|
||||
loadText.value = savedRecipes.length ? savedRecipes[0].recipe : "";
|
||||
loadText.dispatchEvent(evt);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue