mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-21 15:26:16 -04:00
Register values now displayed in the recipe
This commit is contained in:
parent
b86dceb3c6
commit
e2ac297102
5 changed files with 58 additions and 0 deletions
|
@ -61,6 +61,9 @@ WorkerWaiter.prototype.handleChefMessage = function(e) {
|
|||
case "optionUpdate":
|
||||
this.app.options[r.data.option] = r.data.value;
|
||||
break;
|
||||
case "setRegisters":
|
||||
this.manager.recipe.setRegisters(r.data.opIndex, r.data.registers);
|
||||
break;
|
||||
case "highlightsCalculated":
|
||||
this.manager.highlighter.displayHighlights(r.data.pos, r.data.direction);
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue