浏览代码

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);
 };