From 3360d151e731df7701d8e618452794144e69d462 Mon Sep 17 00:00:00 2001 From: YouWei Zhao Date: Sun, 21 Apr 2019 18:16:15 -0400 Subject: [PATCH] fix comment --- _server/editor_game.js | 2 +- _server/refactoring.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/_server/editor_game.js b/_server/editor_game.js index 71667b59..46639469 100644 --- a/_server/editor_game.js +++ b/_server/editor_game.js @@ -1,5 +1,5 @@ editor_game_wrapper = function (editor, main, core) { - // 原则上重构后只有此文件允许`\b(main|core)`形式的调用, 以及其初始化 editor_game_wrapper(editor, main, core) + // 原则上重构后只有此文件允许`\s(main|core)`形式的调用, 以及其初始化 editor_game_wrapper(editor, main, core) editor_game = function () { this.replacerRecord = {} diff --git a/_server/refactoring.md b/_server/refactoring.md index d867c2ff..ff45ab82 100644 --- a/_server/refactoring.md +++ b/_server/refactoring.md @@ -11,7 +11,7 @@ + [ ] editor_multi 多行文本编辑器 + [x] editor_table 处理表格的生成, 及其响应的事件, 从原editor\_mode中分离 + [ ] editor_file 调用fs.js编辑文件, 把原editor\_file模块化 -+ [ ] editor_game 处理来自core的数据, 导入为editor的数据, 从原editor中分离. **只有此文件允许`\b(main|core)`形式的调用**(以及其初始化`editor_game_wrapper(editor, main, core);`) ++ [ ] editor_game 处理来自core的数据, 导入为editor的数据, 从原editor中分离. **只有此文件允许`\s(main|core)`形式的调用**(以及其初始化`editor_game_wrapper(editor, main, core);`) + [x] editor_util 生成guid等函数, 从editor分离 + [ ] editor 执行初始化流程加组合各组件 + [ ] 原editor_mode 移除