1
0
mirror of https://github.com/ruanyf/es6tutorial.git synced 2025-05-28 21:32:20 +00:00

Merge pull request #123 from SimplyY/patch-9

调整缩进
This commit is contained in:
Ruan YiFeng 2016-01-11 19:40:21 +08:00
commit 852717da4b

View File

@ -1173,7 +1173,7 @@ Generator函数的暂停执行的效果意味着可以把异步操作写在yi
function* loadUI() {
showLoadingScreen();
yield loadUIDataAsynchronously();
hideLoadingScreen();
hideLoadingScreen();
}
var loader = loadUI();
// 加载UI