mirror of
https://github.com/gchq/CyberChef.git
synced 2025-05-11 16:51:31 -04:00
restore recipe on refresh
This commit is contained in:
parent
21ed26e104
commit
4a07d52230
11 changed files with 215 additions and 217 deletions
|
@ -792,13 +792,12 @@ class App {
|
|||
* Fires whenever the input or recipe changes in any way.
|
||||
*
|
||||
* @listens Manager#statechange
|
||||
* @param {Event} e
|
||||
*/
|
||||
stateChange(e) {
|
||||
debounce(function() {
|
||||
stateChange() {
|
||||
debounce(() => {
|
||||
this.progress = 0;
|
||||
this.autoBake();
|
||||
this.updateURL(true, null, true);
|
||||
this.updateURL(true);
|
||||
}, 20, "stateChange", this, [])();
|
||||
}
|
||||
|
||||
|
@ -905,7 +904,7 @@ class App {
|
|||
}
|
||||
|
||||
/**
|
||||
* @fires Manager#oplistcreate from nested c-category-li > c-operation-list build() function
|
||||
* Build a CCategoryList element and append it to #categories
|
||||
*/
|
||||
buildCategoryList() {
|
||||
// double-check if the c-category-list already exists,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue