Ver código fonte

Fixed dispatchEvent call in recipe loading chain.

n1474335 7 anos atrás
pai
commit
eee8b7db56
1 arquivos alterados com 1 adições e 1 exclusões
  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);
 };