Browse Source

Fixed dispatchEvent call in recipe loading chain.

n1474335 7 years ago
parent
commit
eee8b7db56
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/web/App.js

+ 1 - 1
src/web/App.js

@@ -488,7 +488,7 @@ App.prototype.setRecipeConfig = function(recipeConfig) {
 
     // Unpause auto bake
     this.autoBakePause = false;
-    window.disptchEent(this.manager.statechange);
+    window.dispatchEvent(this.manager.statechange);
 };