|
@@ -48,15 +48,11 @@ egret_h5.startGame = function () {
|
|
|
}
|
|
|
|
|
|
if(e && e.keyCode == 13){
|
|
|
- if(rootContainer.curIsHomePage()){ //首页
|
|
|
+ if(rootContainer.curIsHomePage()){ //首页
|
|
|
rootContainer.enterInfoPage();
|
|
|
- }
|
|
|
-
|
|
|
- if(rootContainer.curIsInfoPage()){ //内容页
|
|
|
+ }else if(rootContainer.curIsInfoPage()){ //内容页
|
|
|
rootContainer.startToGame();
|
|
|
- }
|
|
|
-
|
|
|
- if(rootContainer.curIsGamePage()){ //游戏页
|
|
|
+ }else if(rootContainer.curIsGamePage()){ //游戏页
|
|
|
rootContainer.restartGame();
|
|
|
}
|
|
|
}
|