mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-21 15:26:16 -04:00
Removed excess auto-baking when an operation is added to the recipe. Fixes #120.
This commit is contained in:
parent
7e7da26f29
commit
39f36c9184
1 changed files with 3 additions and 2 deletions
|
@ -26,7 +26,6 @@ var RecipeWaiter = function(app, manager) {
|
||||||
RecipeWaiter.prototype.initialiseOperationDragNDrop = function() {
|
RecipeWaiter.prototype.initialiseOperationDragNDrop = function() {
|
||||||
var recList = document.getElementById("rec-list");
|
var recList = document.getElementById("rec-list");
|
||||||
|
|
||||||
|
|
||||||
// Recipe list
|
// Recipe list
|
||||||
Sortable.create(recList, {
|
Sortable.create(recList, {
|
||||||
group: "recipe",
|
group: "recipe",
|
||||||
|
@ -45,7 +44,9 @@ RecipeWaiter.prototype.initialiseOperationDragNDrop = function() {
|
||||||
}
|
}
|
||||||
}.bind(this),
|
}.bind(this),
|
||||||
onSort: function(evt) {
|
onSort: function(evt) {
|
||||||
document.dispatchEvent(this.manager.statechange);
|
if (evt.from.id === "rec-list") {
|
||||||
|
document.dispatchEvent(this.manager.statechange);
|
||||||
|
}
|
||||||
}.bind(this)
|
}.bind(this)
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue