2
0
mirror of https://github.com/gchq/CyberChef synced 2025-12-05 23:53:27 +00:00

Merge pull request #111 from gchq/bug-autobake-reorder

BUGFIX #98: Auto-Bake now triggers when operations are re-ordered.
This commit is contained in:
n1474335
2017-04-07 22:34:32 +01:00
committed by GitHub

View File

@@ -43,6 +43,9 @@ RecipeWaiter.prototype.initialiseOperationDragNDrop = function() {
evt.item.remove();
evt.target.dispatchEvent(this.manager.operationremove);
}
}.bind(this),
onSort: function(evt) {
document.dispatchEvent(this.manager.statechange);
}.bind(this)
});