Skip to content

Commit

Permalink
Merge pull request #111 from gchq/bug-autobake-reorder
Browse files Browse the repository at this point in the history
BUGFIX #98: Auto-Bake now triggers when operations are re-ordered.
  • Loading branch information
n1474335 authored Apr 7, 2017
2 parents ce2ffca + 2a07999 commit 9d4862b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/web/RecipeWaiter.js
Original file line number Diff line number Diff line change
Expand Up @@ -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)
});

Expand Down

0 comments on commit 9d4862b

Please sign in to comment.