ソースを参照

Fixed dispatchEvent call in recipe loading chain.

n1474335 7 年 前
コミット
eee8b7db56
1 ファイル変更1 行追加1 行削除
  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);
 };