mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-21 15:26:16 -04:00
Multiple Register operations can now be called in a single recipe
This commit is contained in:
parent
e2ac297102
commit
877ab57f0a
6 changed files with 36 additions and 18 deletions
|
@ -62,7 +62,7 @@ WorkerWaiter.prototype.handleChefMessage = function(e) {
|
|||
this.app.options[r.data.option] = r.data.value;
|
||||
break;
|
||||
case "setRegisters":
|
||||
this.manager.recipe.setRegisters(r.data.opIndex, r.data.registers);
|
||||
this.manager.recipe.setRegisters(r.data.opIndex, r.data.numPrevRegisters, r.data.registers);
|
||||
break;
|
||||
case "highlightsCalculated":
|
||||
this.manager.highlighter.displayHighlights(r.data.pos, r.data.direction);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue